From 3c1388cbafa3f7ed84437169b41d77c4a2b9e516 Mon Sep 17 00:00:00 2001 From: Programmist73 Date: Thu, 23 Mar 2023 10:26:18 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D0=BE=20=D1=80?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=82.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Implements/ShopStorage.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/BlacksmithWorkshop/BlacksmithWorkshopListImplement/Implements/ShopStorage.cs b/BlacksmithWorkshop/BlacksmithWorkshopListImplement/Implements/ShopStorage.cs index 5499622..e5a1dec 100644 --- a/BlacksmithWorkshop/BlacksmithWorkshopListImplement/Implements/ShopStorage.cs +++ b/BlacksmithWorkshop/BlacksmithWorkshopListImplement/Implements/ShopStorage.cs @@ -2,6 +2,7 @@ using BlacksmithWorkshopContracts.SearchModels; using BlacksmithWorkshopContracts.StoragesContracts; using BlacksmithWorkshopContracts.ViewModels; +using BlacksmithWorkshopDataModels.Models; using BlacksmithWorkshopListImplement.Models; using System; using System.Collections.Generic; @@ -124,5 +125,10 @@ namespace BlacksmithWorkshopListImplement.Implements return null; } + + public bool SellManufactures(IManufactureModel model, int count) + { + throw new NotImplementedException(); + } } }