f118635029
Added inventory and sales api endpoints
9 lines
169 B
Transact-SQL
9 lines
169 B
Transact-SQL
CREATE PROCEDURE [dbo].[spInventoryGetAll]
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
SELECT [Id], [ProductId], [Quantity], [PurchasePrice], [PurchaseDate]
|
|
from dbo.Inventory;
|
|
|
|
END |