Retail_manager/RMData/dbo/Stored Procedures/spInventoryGetAll.sql
s459315 f118635029 Added admin endpoints
Added inventory and sales api endpoints
2022-08-02 19:32:39 +02:00

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