From a4e4b5208be03ade6cbc6ab99f046ecb05d1c1bf Mon Sep 17 00:00:00 2001 From: malimova Date: Wed, 28 Feb 2024 22:48:48 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D0=BE=20Lab1=5Fh?= =?UTF-8?q?ard.=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20Shop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ConfectioneryBusinessLogic/ShopLogic.cs | 12 ++++++++++++ .../BindingModels/ShopBindingModel.cs | 12 ++++++++++++ .../BindingModels/SupplyBindingModel.cs | 12 ++++++++++++ .../BusinessLogicsContracts/IShopLogic.cs | 12 ++++++++++++ .../SearchModels/ShopSearchModel.cs | 12 ++++++++++++ .../StoragesContracts/IShopStorage.cs | 12 ++++++++++++ .../ViewModels/ShopViewModel.cs | 12 ++++++++++++ Confectionery/ConfectioneryDataModels/IShopModel.cs | 12 ++++++++++++ .../ConfectioneryDataModels/ISupplyModel.cs | 12 ++++++++++++ Confectionery/ConfectioneryListImplement/Shop.cs | 12 ++++++++++++ .../ConfectioneryListImplement/ShopStorage.cs | 12 ++++++++++++ 11 files changed, 132 insertions(+) create mode 100644 Confectionery/ConfectioneryBusinessLogic/ShopLogic.cs create mode 100644 Confectionery/ConfectioneryContracts/BindingModels/ShopBindingModel.cs create mode 100644 Confectionery/ConfectioneryContracts/BindingModels/SupplyBindingModel.cs create mode 100644 Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IShopLogic.cs create mode 100644 Confectionery/ConfectioneryContracts/SearchModels/ShopSearchModel.cs create mode 100644 Confectionery/ConfectioneryContracts/StoragesContracts/IShopStorage.cs create mode 100644 Confectionery/ConfectioneryContracts/ViewModels/ShopViewModel.cs create mode 100644 Confectionery/ConfectioneryDataModels/IShopModel.cs create mode 100644 Confectionery/ConfectioneryDataModels/ISupplyModel.cs create mode 100644 Confectionery/ConfectioneryListImplement/Shop.cs create mode 100644 Confectionery/ConfectioneryListImplement/ShopStorage.cs diff --git a/Confectionery/ConfectioneryBusinessLogic/ShopLogic.cs b/Confectionery/ConfectioneryBusinessLogic/ShopLogic.cs new file mode 100644 index 0000000..8bb7f7c --- /dev/null +++ b/Confectionery/ConfectioneryBusinessLogic/ShopLogic.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryBusinessLogic +{ + public class ShopLogic + { + } +} diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ShopBindingModel.cs b/Confectionery/ConfectioneryContracts/BindingModels/ShopBindingModel.cs new file mode 100644 index 0000000..73d2372 --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BindingModels/ShopBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BindingModels +{ + public class ShopBindingModel + { + } +} diff --git a/Confectionery/ConfectioneryContracts/BindingModels/SupplyBindingModel.cs b/Confectionery/ConfectioneryContracts/BindingModels/SupplyBindingModel.cs new file mode 100644 index 0000000..3f27b91 --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BindingModels/SupplyBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BindingModels +{ + public class SupplyBindingModel + { + } +} diff --git a/Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IShopLogic.cs b/Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IShopLogic.cs new file mode 100644 index 0000000..9692fce --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IShopLogic.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BusinessLogicsContracts +{ + public interface IShopLogic + { + } +} diff --git a/Confectionery/ConfectioneryContracts/SearchModels/ShopSearchModel.cs b/Confectionery/ConfectioneryContracts/SearchModels/ShopSearchModel.cs new file mode 100644 index 0000000..ff32c27 --- /dev/null +++ b/Confectionery/ConfectioneryContracts/SearchModels/ShopSearchModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.SearchModels +{ + public class ShopSearchModel + { + } +} diff --git a/Confectionery/ConfectioneryContracts/StoragesContracts/IShopStorage.cs b/Confectionery/ConfectioneryContracts/StoragesContracts/IShopStorage.cs new file mode 100644 index 0000000..8ec518d --- /dev/null +++ b/Confectionery/ConfectioneryContracts/StoragesContracts/IShopStorage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.StoragesContracts +{ + public interface IShopStorage + { + } +} diff --git a/Confectionery/ConfectioneryContracts/ViewModels/ShopViewModel.cs b/Confectionery/ConfectioneryContracts/ViewModels/ShopViewModel.cs new file mode 100644 index 0000000..d92717a --- /dev/null +++ b/Confectionery/ConfectioneryContracts/ViewModels/ShopViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.ViewModels +{ + public class ShopViewModel + { + } +} diff --git a/Confectionery/ConfectioneryDataModels/IShopModel.cs b/Confectionery/ConfectioneryDataModels/IShopModel.cs new file mode 100644 index 0000000..7315e2f --- /dev/null +++ b/Confectionery/ConfectioneryDataModels/IShopModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryDataModels +{ + internal interface IShopModel + { + } +} diff --git a/Confectionery/ConfectioneryDataModels/ISupplyModel.cs b/Confectionery/ConfectioneryDataModels/ISupplyModel.cs new file mode 100644 index 0000000..a4ad9c1 --- /dev/null +++ b/Confectionery/ConfectioneryDataModels/ISupplyModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryDataModels +{ + internal interface ISupplyModel + { + } +} diff --git a/Confectionery/ConfectioneryListImplement/Shop.cs b/Confectionery/ConfectioneryListImplement/Shop.cs new file mode 100644 index 0000000..1ede304 --- /dev/null +++ b/Confectionery/ConfectioneryListImplement/Shop.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryListImplement +{ + internal class Shop + { + } +} diff --git a/Confectionery/ConfectioneryListImplement/ShopStorage.cs b/Confectionery/ConfectioneryListImplement/ShopStorage.cs new file mode 100644 index 0000000..571e6a7 --- /dev/null +++ b/Confectionery/ConfectioneryListImplement/ShopStorage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryListImplement +{ + internal class ShopStorage + { + } +}