From 211ce494baede87b08f949217c8b881ba37b608b Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Mon, 20 May 2024 11:39:23 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B4=D0=BC=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=BB=20IShopStorage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SecuritySystemContracts/StoragesContracts/IShopStorage.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SecuritySystem/SecuritySystemContracts/StoragesContracts/IShopStorage.cs b/SecuritySystem/SecuritySystemContracts/StoragesContracts/IShopStorage.cs index e7e624a..112a8ff 100644 --- a/SecuritySystem/SecuritySystemContracts/StoragesContracts/IShopStorage.cs +++ b/SecuritySystem/SecuritySystemContracts/StoragesContracts/IShopStorage.cs @@ -13,5 +13,6 @@ namespace SecuritySystemContracts.StoragesContracts ShopViewModel? Insert(ShopBindingModel model); ShopViewModel? Update(ShopBindingModel model); ShopViewModel? Delete(ShopBindingModel model); + bool SellSecures(ISecureModel secureModel, int securesCount); } }