f0bea75284
All the changes necessary to save shopping cart to DB
11 lines
204 B
Transact-SQL
11 lines
204 B
Transact-SQL
CREATE PROCEDURE [dbo].[spProductGetById]
|
|
@Id int
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
select Id, ProductName, [Description], RetailPrice, QuantityInStock, IsTaxable
|
|
from [dbo].[Product]
|
|
where Id = @Id;
|
|
END
|