Initial commit

This commit is contained in:
user
2026-07-12 13:56:05 +04:00
commit 04bf3a4b58
850 changed files with 9057 additions and 0 deletions
@@ -0,0 +1,18 @@
USE [Database]
IF OBJECT_ID('[Procedures].[update_supplier]', 'P') IS NOT NULL
DROP PROCEDURE [Procedures].[update_supplier];
GO
CREATE PROCEDURE [Procedures].[update_supplier]
@supplier_id AS INT,
@name AS NVARCHAR(128),
@address AS NVARCHAR(128),
@telephone_number AS NVARCHAR(128)
AS
UPDATE [Tables].[suppliers]
SET
[name] = @name,
[address] = @address,
[telephone_number] = @telephone_number
WHERE [id] = @supplier_id;
GO