0957963cad
Added the ability to tax products for sale
9 lines
199 B
Transact-SQL
9 lines
199 B
Transact-SQL
CREATE PROCEDURE [dbo].[spProductGetAll]
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
select Id, ProductName, [Description], RetailPrice, QuantityInStock, IsTaxable
|
|
from [dbo].[Product]
|
|
order by ProductName;
|
|
END |