From 1da0f571b24eeef1c91994a509c1461dcbe20dd1 Mon Sep 17 00:00:00 2001 From: urlilpolly Date: Wed, 6 Mar 2024 18:11:48 +0400 Subject: [PATCH] laba1 --- FishFactory/FishFactory.sln | 49 ++++ .../BusinessLogics/CannedLogic.cs | 116 +++++++++ .../BusinessLogics/ComponentLogic.cs | 116 +++++++++ .../BusinessLogics/OrderLogic.cs | 111 +++++++++ .../FishFactoryBusinessLogic/Class1.cs | 7 + .../FishFactoryBusinessLogic.csproj | 17 ++ .../BindingModels/CannedBindingModel.cs | 17 ++ .../BindingModels/ComponentBindingModel.cs | 17 ++ .../BindingModels/OrderBindingModel.cs | 21 ++ .../BusinessLogicsContracts/ICannedLogic.cs | 20 ++ .../IComponentLogic.cs | 20 ++ .../BusinessLogicsContracts/IOrderLogic.cs | 20 ++ FishFactory/FishFactoryContracts/Class1.cs | 7 + .../FishFactoryContracts.csproj | 13 ++ .../SearchModels/CannedSearchModel.cs | 14 ++ .../SearchModels/ComponentSearchModel.cs | 14 ++ .../SearchModels/OrderSearchModel.cs | 13 ++ .../StoragesContracts/ICannedStorage.cs | 21 ++ .../StoragesContracts/IComponentStorage.cs | 21 ++ .../StoragesContracts/IOrderStorage.cs | 21 ++ .../ViewModels/CannedViewModel.cs | 20 ++ .../ViewModels/ComponentViewModel.cs | 19 ++ .../ViewModels/OrderViewModel.cs | 30 +++ FishFactory/FishFactoryDataModels/Class1.cs | 7 + .../Enums/OrderStatus.cs | 17 ++ .../FishFactoryDataModels.csproj | 15 ++ FishFactory/FishFactoryDataModels/IId.cs | 13 ++ .../Models/ICannedModel.cs | 15 ++ .../Models/IComponentModel.cs | 14 ++ .../Models/IOrderModel.cs | 19 ++ .../FishFactoryListImplement/Class1.cs | 7 + .../DataListSingleton.cs | 31 +++ .../FishFactoryListImplement.csproj | 14 ++ .../Implements/CannedStorage.cs | 107 +++++++++ .../Implements/ComponentStorage.cs | 109 +++++++++ .../Implements/OrderStorage.cs | 119 ++++++++++ .../FishFactoryListImplement/Models/Canned.cs | 55 +++++ .../Models/Component.cs | 46 ++++ .../FishFactoryListImplement/Models/Order.cs | 63 +++++ .../FishFactoryView/FishFactoryView.csproj | 22 ++ .../FishFactoryView/FormCanned.Designer.cs | 220 ++++++++++++++++++ FishFactory/FishFactoryView/FormCanned.cs | 220 ++++++++++++++++++ FishFactory/FishFactoryView/FormCanned.resx | 126 ++++++++++ .../FormCannedComponent.Designer.cs | 118 ++++++++++ .../FishFactoryView/FormCannedComponent.cs | 90 +++++++ .../FishFactoryView/FormCannedComponent.resx | 120 ++++++++++ .../FishFactoryView/FormCanneds.Designer.cs | 113 +++++++++ FishFactory/FishFactoryView/FormCanneds.cs | 113 +++++++++ FishFactory/FishFactoryView/FormCanneds.resx | 120 ++++++++++ .../FishFactoryView/FormComponent.Designer.cs | 118 ++++++++++ FishFactory/FishFactoryView/FormComponent.cs | 89 +++++++ .../FishFactoryView/FormComponent.resx | 120 ++++++++++ .../FormComponents.Designer.cs | 114 +++++++++ FishFactory/FishFactoryView/FormComponents.cs | 116 +++++++++ .../FishFactoryView/FormComponents.resx | 120 ++++++++++ .../FormCreateOrder.Designer.cs | 143 ++++++++++++ .../FishFactoryView/FormCreateOrder.cs | 132 +++++++++++ .../FishFactoryView/FormCreateOrder.resx | 120 ++++++++++ .../FishFactoryView/MainForm.Designer.cs | 171 ++++++++++++++ FishFactory/FishFactoryView/MainForm.cs | 162 +++++++++++++ FishFactory/FishFactoryView/MainForm.resx | 123 ++++++++++ FishFactory/FishFactoryView/Program.cs | 52 +++++ FishFactory/FishFactoryView/nlog.config | 15 ++ 63 files changed, 4232 insertions(+) create mode 100644 FishFactory/FishFactory.sln create mode 100644 FishFactory/FishFactoryBusinessLogic/BusinessLogics/CannedLogic.cs create mode 100644 FishFactory/FishFactoryBusinessLogic/BusinessLogics/ComponentLogic.cs create mode 100644 FishFactory/FishFactoryBusinessLogic/BusinessLogics/OrderLogic.cs create mode 100644 FishFactory/FishFactoryBusinessLogic/Class1.cs create mode 100644 FishFactory/FishFactoryBusinessLogic/FishFactoryBusinessLogic.csproj create mode 100644 FishFactory/FishFactoryContracts/BindingModels/CannedBindingModel.cs create mode 100644 FishFactory/FishFactoryContracts/BindingModels/ComponentBindingModel.cs create mode 100644 FishFactory/FishFactoryContracts/BindingModels/OrderBindingModel.cs create mode 100644 FishFactory/FishFactoryContracts/BusinessLogicsContracts/ICannedLogic.cs create mode 100644 FishFactory/FishFactoryContracts/BusinessLogicsContracts/IComponentLogic.cs create mode 100644 FishFactory/FishFactoryContracts/BusinessLogicsContracts/IOrderLogic.cs create mode 100644 FishFactory/FishFactoryContracts/Class1.cs create mode 100644 FishFactory/FishFactoryContracts/FishFactoryContracts.csproj create mode 100644 FishFactory/FishFactoryContracts/SearchModels/CannedSearchModel.cs create mode 100644 FishFactory/FishFactoryContracts/SearchModels/ComponentSearchModel.cs create mode 100644 FishFactory/FishFactoryContracts/SearchModels/OrderSearchModel.cs create mode 100644 FishFactory/FishFactoryContracts/StoragesContracts/ICannedStorage.cs create mode 100644 FishFactory/FishFactoryContracts/StoragesContracts/IComponentStorage.cs create mode 100644 FishFactory/FishFactoryContracts/StoragesContracts/IOrderStorage.cs create mode 100644 FishFactory/FishFactoryContracts/ViewModels/CannedViewModel.cs create mode 100644 FishFactory/FishFactoryContracts/ViewModels/ComponentViewModel.cs create mode 100644 FishFactory/FishFactoryContracts/ViewModels/OrderViewModel.cs create mode 100644 FishFactory/FishFactoryDataModels/Class1.cs create mode 100644 FishFactory/FishFactoryDataModels/Enums/OrderStatus.cs create mode 100644 FishFactory/FishFactoryDataModels/FishFactoryDataModels.csproj create mode 100644 FishFactory/FishFactoryDataModels/IId.cs create mode 100644 FishFactory/FishFactoryDataModels/Models/ICannedModel.cs create mode 100644 FishFactory/FishFactoryDataModels/Models/IComponentModel.cs create mode 100644 FishFactory/FishFactoryDataModels/Models/IOrderModel.cs create mode 100644 FishFactory/FishFactoryListImplement/Class1.cs create mode 100644 FishFactory/FishFactoryListImplement/DataListSingleton.cs create mode 100644 FishFactory/FishFactoryListImplement/FishFactoryListImplement.csproj create mode 100644 FishFactory/FishFactoryListImplement/Implements/CannedStorage.cs create mode 100644 FishFactory/FishFactoryListImplement/Implements/ComponentStorage.cs create mode 100644 FishFactory/FishFactoryListImplement/Implements/OrderStorage.cs create mode 100644 FishFactory/FishFactoryListImplement/Models/Canned.cs create mode 100644 FishFactory/FishFactoryListImplement/Models/Component.cs create mode 100644 FishFactory/FishFactoryListImplement/Models/Order.cs create mode 100644 FishFactory/FishFactoryView/FishFactoryView.csproj create mode 100644 FishFactory/FishFactoryView/FormCanned.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormCanned.cs create mode 100644 FishFactory/FishFactoryView/FormCanned.resx create mode 100644 FishFactory/FishFactoryView/FormCannedComponent.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormCannedComponent.cs create mode 100644 FishFactory/FishFactoryView/FormCannedComponent.resx create mode 100644 FishFactory/FishFactoryView/FormCanneds.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormCanneds.cs create mode 100644 FishFactory/FishFactoryView/FormCanneds.resx create mode 100644 FishFactory/FishFactoryView/FormComponent.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormComponent.cs create mode 100644 FishFactory/FishFactoryView/FormComponent.resx create mode 100644 FishFactory/FishFactoryView/FormComponents.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormComponents.cs create mode 100644 FishFactory/FishFactoryView/FormComponents.resx create mode 100644 FishFactory/FishFactoryView/FormCreateOrder.Designer.cs create mode 100644 FishFactory/FishFactoryView/FormCreateOrder.cs create mode 100644 FishFactory/FishFactoryView/FormCreateOrder.resx create mode 100644 FishFactory/FishFactoryView/MainForm.Designer.cs create mode 100644 FishFactory/FishFactoryView/MainForm.cs create mode 100644 FishFactory/FishFactoryView/MainForm.resx create mode 100644 FishFactory/FishFactoryView/Program.cs create mode 100644 FishFactory/FishFactoryView/nlog.config diff --git a/FishFactory/FishFactory.sln b/FishFactory/FishFactory.sln new file mode 100644 index 0000000..0b9295f --- /dev/null +++ b/FishFactory/FishFactory.sln @@ -0,0 +1,49 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33801.468 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryDataModels", "FishFactoryDataModels\FishFactoryDataModels.csproj", "{467C46EB-67CC-40EA-8C79-7A63464449D3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryContracts", "FishFactoryContracts\FishFactoryContracts.csproj", "{150AFB22-9A21-47BE-B072-4D2176540BBD}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryBusinessLogic", "FishFactoryBusinessLogic\FishFactoryBusinessLogic.csproj", "{4228B99D-1AEE-4DE0-90D3-73A575E24171}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryListImplement", "FishFactoryListImplement\FishFactoryListImplement.csproj", "{7BD43CA5-83F9-4A5D-AA53-B4A6293BFE79}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FishFactoryView", "FishFactoryView\FishFactoryView.csproj", "{1039795B-684B-4D67-92F7-CEB309C6CEC2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {467C46EB-67CC-40EA-8C79-7A63464449D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {467C46EB-67CC-40EA-8C79-7A63464449D3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {467C46EB-67CC-40EA-8C79-7A63464449D3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {467C46EB-67CC-40EA-8C79-7A63464449D3}.Release|Any CPU.Build.0 = Release|Any CPU + {150AFB22-9A21-47BE-B072-4D2176540BBD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {150AFB22-9A21-47BE-B072-4D2176540BBD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {150AFB22-9A21-47BE-B072-4D2176540BBD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {150AFB22-9A21-47BE-B072-4D2176540BBD}.Release|Any CPU.Build.0 = Release|Any CPU + {4228B99D-1AEE-4DE0-90D3-73A575E24171}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4228B99D-1AEE-4DE0-90D3-73A575E24171}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4228B99D-1AEE-4DE0-90D3-73A575E24171}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4228B99D-1AEE-4DE0-90D3-73A575E24171}.Release|Any CPU.Build.0 = Release|Any CPU + {7BD43CA5-83F9-4A5D-AA53-B4A6293BFE79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7BD43CA5-83F9-4A5D-AA53-B4A6293BFE79}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7BD43CA5-83F9-4A5D-AA53-B4A6293BFE79}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7BD43CA5-83F9-4A5D-AA53-B4A6293BFE79}.Release|Any CPU.Build.0 = Release|Any CPU + {1039795B-684B-4D67-92F7-CEB309C6CEC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1039795B-684B-4D67-92F7-CEB309C6CEC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1039795B-684B-4D67-92F7-CEB309C6CEC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1039795B-684B-4D67-92F7-CEB309C6CEC2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BC0993AF-1F45-4385-9CA1-B125CFBF26DC} + EndGlobalSection +EndGlobal diff --git a/FishFactory/FishFactoryBusinessLogic/BusinessLogics/CannedLogic.cs b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/CannedLogic.cs new file mode 100644 index 0000000..3650307 --- /dev/null +++ b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/CannedLogic.cs @@ -0,0 +1,116 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryBusinessLogic.BusinessLogics +{ + public class CannedLogic : ICannedLogic + { + private readonly ILogger _logger; + private readonly ICannedStorage _CannedStorage; + public CannedLogic(ILogger logger, ICannedStorage + CannedStorage) + { + _logger = logger; + _CannedStorage = CannedStorage; + } + public List? ReadList(CannedSearchModel? model) + { + _logger.LogInformation("ReadList. CannedName:{CannedName}.Id:{Id}", model?.CannedName, model?.Id); + var list = model == null ? _CannedStorage.GetFullList() : + _CannedStorage.GetFilteredList(model); + if (list == null) + { + _logger.LogWarning("ReadList return null list"); + return null; + } + _logger.LogInformation("ReadList. Count:{Count}", list.Count); + return list; + } + public CannedViewModel? ReadElement(CannedSearchModel model) + { + if (model == null) + { + throw new ArgumentNullException(nameof(model)); + } + _logger.LogInformation("ReadElement. CannedName:{CannedName}.Id:{Id}", model.CannedName, model.Id); + var element = _CannedStorage.GetElement(model); + if (element == null) + { + _logger.LogWarning("ReadElement element not found"); + return null; + } + _logger.LogInformation("ReadElement find. Id:{Id}", element.Id); + return element; + } + public bool Create(CannedBindingModel model) + { + CheckModel(model); + if (_CannedStorage.Insert(model) == null) + { + _logger.LogWarning("Insert operation failed"); + return false; + } + return true; + } + public bool Update(CannedBindingModel model) + { + CheckModel(model); + if (_CannedStorage.Update(model) == null) + { + _logger.LogWarning("Update operation failed"); + return false; + } + return true; + } + public bool Delete(CannedBindingModel model) + { + CheckModel(model, false); + _logger.LogInformation("Delete. Id:{Id}", model.Id); + if (_CannedStorage.Delete(model) == null) + { + _logger.LogWarning("Delete operation failed"); + return false; + } + return true; + } + private void CheckModel(CannedBindingModel model, bool withParams = + true) + { + if (model == null) + { + throw new ArgumentNullException(nameof(model)); + } + if (!withParams) + { + return; + } + if (string.IsNullOrEmpty(model.CannedName)) + { + throw new ArgumentNullException("Нет названия консервы", + nameof(model.CannedName)); + } + if (model.Price <= 0) + { + throw new ArgumentNullException("Цена консервы должна быть больше 0", nameof(model.Price)); + } + _logger.LogInformation("Canned. CannedName:{CannedName}.Cost:{ Cost}. Id: {Id}", model.CannedName, model.Price, model.Id); + var element = _CannedStorage.GetElement(new CannedSearchModel + { + CannedName = model.CannedName + }); + if (element != null && element.Id != model.Id) + { + throw new InvalidOperationException("Консерва с таким названием уже есть"); + } + } + } +} diff --git a/FishFactory/FishFactoryBusinessLogic/BusinessLogics/ComponentLogic.cs b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/ComponentLogic.cs new file mode 100644 index 0000000..d79b801 --- /dev/null +++ b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/ComponentLogic.cs @@ -0,0 +1,116 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryBusinessLogic.BusinessLogics +{ + public class ComponentLogic : IComponentLogic + { + private readonly ILogger _logger; + private readonly IComponentStorage _componentStorage; + public ComponentLogic(ILogger logger, IComponentStorage + componentStorage) + { + _logger = logger; + _componentStorage = componentStorage; + } + public List? ReadList(ComponentSearchModel? model) + { + _logger.LogInformation("ReadList. ComponentName:{ComponentName}.Id:{Id}", model?.ComponentName, model?.Id); + var list = model == null ? _componentStorage.GetFullList() : +_componentStorage.GetFilteredList(model); + if (list == null) + { + _logger.LogWarning("ReadList return null list"); + return null; + } + _logger.LogInformation("ReadList. Count:{Count}", list.Count); + return list; + } + public ComponentViewModel? ReadElement(ComponentSearchModel model) + { + if (model == null) + { + throw new ArgumentNullException(nameof(model)); + } + _logger.LogInformation("ReadElement. ComponentName:{ComponentName}.Id:{Id}", model.ComponentName, model.Id); + var element = _componentStorage.GetElement(model); + if (element == null) + { + _logger.LogWarning("ReadElement element not found"); + return null; + } + _logger.LogInformation("ReadElement find. Id:{Id}", element.Id); + return element; + } + public bool Create(ComponentBindingModel model) + { + CheckModel(model); + if (_componentStorage.Insert(model) == null) + { + _logger.LogWarning("Insert operation failed"); + return false; + } + return true; + } + public bool Update(ComponentBindingModel model) + { + CheckModel(model); + if (_componentStorage.Update(model) == null) + { + _logger.LogWarning("Update operation failed"); + return false; + } + return true; + } + public bool Delete(ComponentBindingModel model) + { + CheckModel(model, false); + _logger.LogInformation("Delete. Id:{Id}", model.Id); + if (_componentStorage.Delete(model) == null) + { + _logger.LogWarning("Delete operation failed"); + return false; + } + return true; + } + private void CheckModel(ComponentBindingModel model, bool withParams = + true) + { + if (model == null) + { + throw new ArgumentNullException(nameof(model)); + } + if (!withParams) + { + return; + } + if (string.IsNullOrEmpty(model.ComponentName)) + { + throw new ArgumentNullException("Нет названия компонента", + nameof(model.ComponentName)); + } + if (model.Cost <= 0) + { + throw new ArgumentNullException("Цена компонента должна быть больше 0", nameof(model.Cost)); + } + _logger.LogInformation("Component. ComponentName:{ComponentName}.Cost:{ Cost}. Id: {Id}", model.ComponentName, model.Cost, model.Id); + var element = _componentStorage.GetElement(new ComponentSearchModel + { + ComponentName = model.ComponentName + }); + if (element != null && element.Id != model.Id) + { + throw new InvalidOperationException("Компонент с таким названием уже есть"); + } + } + } +} diff --git a/FishFactory/FishFactoryBusinessLogic/BusinessLogics/OrderLogic.cs b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/OrderLogic.cs new file mode 100644 index 0000000..840b83e --- /dev/null +++ b/FishFactory/FishFactoryBusinessLogic/BusinessLogics/OrderLogic.cs @@ -0,0 +1,111 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Enums; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryBusinessLogic.BusinessLogics +{ + public class OrderLogic : IOrderLogic + { + private readonly ILogger _logger; + private readonly IOrderStorage _orderStorage; + + public OrderLogic(ILogger logger, IOrderStorage orderStorage) + { + _logger = logger; + _orderStorage = orderStorage; + } + + public List? ReadList(OrderSearchModel? model) + { + _logger.LogInformation("ReadList. Id:{ Id}", model?.Id); + var list = model == null ? _orderStorage.GetFullList() : + _orderStorage.GetFilteredList(model); + if (list == null) + { + _logger.LogWarning("ReadList return null list"); + return null; + } + _logger.LogInformation("ReadList. Count:{Count}", list.Count); + return list; + } + + public bool CreateOrder(OrderBindingModel model) + { + CheckModel(model); + if (model.Status != OrderStatus.Неизвестен) return false; + model.Status = OrderStatus.Принят; + if (_orderStorage.Insert(model) == null) + { + _logger.LogWarning("Insert operation failed"); + return false; + } + return true; + } + + public bool ChangeStatus(OrderBindingModel model, OrderStatus status) + { + CheckModel(model); + var element = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id }); + if (element == null) + { + _logger.LogWarning("Read operation failed"); + return false; + } + if (element.Status != status - 1) + { + _logger.LogWarning("Status change operation failed"); + throw new InvalidOperationException("Текущий статус заказа не может быть переведен в выбранный"); + } + model.Status = status; + if (model.Status == OrderStatus.Выдан) model.DateImplement = DateTime.Now; + _orderStorage.Update(model); + return true; + } + + public bool TakeOrderInWork(OrderBindingModel model) + { + return ChangeStatus(model, OrderStatus.Выполняется); + } + + public bool FinishOrder(OrderBindingModel model) + { + return ChangeStatus(model, OrderStatus.Готов); + } + + public bool DeliveryOrder(OrderBindingModel model) + { + return ChangeStatus(model, OrderStatus.Выдан); + } + + private void CheckModel(OrderBindingModel model, bool withParams = +true) + { + if (model == null) + { + throw new ArgumentNullException(nameof(model)); + } + if (!withParams) + { + return; + } + if (model.Sum <= 0) + { + throw new ArgumentNullException("Цена заказа должна быть больше 0", nameof(model.Sum)); + } + if (model.Count <= 0) + { + throw new ArgumentNullException("Количество элементов в заказе должно быть больше 0", nameof(model.Count)); + } + _logger.LogInformation("Order. Sum:{ Cost}. Id: { Id}", model.Sum, model.Id); + } + } +} diff --git a/FishFactory/FishFactoryBusinessLogic/Class1.cs b/FishFactory/FishFactoryBusinessLogic/Class1.cs new file mode 100644 index 0000000..d168dbe --- /dev/null +++ b/FishFactory/FishFactoryBusinessLogic/Class1.cs @@ -0,0 +1,7 @@ +namespace FishFactoryBusinessLogic +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryBusinessLogic/FishFactoryBusinessLogic.csproj b/FishFactory/FishFactoryBusinessLogic/FishFactoryBusinessLogic.csproj new file mode 100644 index 0000000..c68f216 --- /dev/null +++ b/FishFactory/FishFactoryBusinessLogic/FishFactoryBusinessLogic.csproj @@ -0,0 +1,17 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + diff --git a/FishFactory/FishFactoryContracts/BindingModels/CannedBindingModel.cs b/FishFactory/FishFactoryContracts/BindingModels/CannedBindingModel.cs new file mode 100644 index 0000000..87bf379 --- /dev/null +++ b/FishFactory/FishFactoryContracts/BindingModels/CannedBindingModel.cs @@ -0,0 +1,17 @@ +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BindingModels +{ + public class CannedBindingModel : ICannedModel + { + public int Id { get; set; } + public string CannedName { get; set; } = string.Empty; + public double Price { get; set; } + public Dictionary CannedComponents { get; set; } = new(); + } +} diff --git a/FishFactory/FishFactoryContracts/BindingModels/ComponentBindingModel.cs b/FishFactory/FishFactoryContracts/BindingModels/ComponentBindingModel.cs new file mode 100644 index 0000000..16f2575 --- /dev/null +++ b/FishFactory/FishFactoryContracts/BindingModels/ComponentBindingModel.cs @@ -0,0 +1,17 @@ +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BindingModels +{ + public class ComponentBindingModel : IComponentModel + { + public int Id { get; set; } + public string ComponentName { get; set; } = string.Empty; + public double Cost { get; set; } + + } +} diff --git a/FishFactory/FishFactoryContracts/BindingModels/OrderBindingModel.cs b/FishFactory/FishFactoryContracts/BindingModels/OrderBindingModel.cs new file mode 100644 index 0000000..0fb0eed --- /dev/null +++ b/FishFactory/FishFactoryContracts/BindingModels/OrderBindingModel.cs @@ -0,0 +1,21 @@ +using FishFactoryDataModels.Enums; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BindingModels +{ + public class OrderBindingModel : IOrderModel + { + public int Id { get; set; } + public int CannedId { get; set; } + public int Count { get; set; } + public double Sum { get; set; } + public OrderStatus Status { get; set; } = OrderStatus.Неизвестен; + public DateTime DateCreate { get; set; } = DateTime.Now; + public DateTime? DateImplement { get; set; } + } +} diff --git a/FishFactory/FishFactoryContracts/BusinessLogicsContracts/ICannedLogic.cs b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/ICannedLogic.cs new file mode 100644 index 0000000..c2c609d --- /dev/null +++ b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/ICannedLogic.cs @@ -0,0 +1,20 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BusinessLogicsContracts +{ + public interface ICannedLogic + { + List? ReadList(CannedSearchModel? model); + CannedViewModel? ReadElement(CannedSearchModel model); + bool Create(CannedBindingModel model); + bool Update(CannedBindingModel model); + bool Delete(CannedBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IComponentLogic.cs b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IComponentLogic.cs new file mode 100644 index 0000000..1a5e983 --- /dev/null +++ b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IComponentLogic.cs @@ -0,0 +1,20 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BusinessLogicsContracts +{ + public interface IComponentLogic + { + List? ReadList(ComponentSearchModel? model); + ComponentViewModel? ReadElement(ComponentSearchModel model); + bool Create(ComponentBindingModel model); + bool Update(ComponentBindingModel model); + bool Delete(ComponentBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IOrderLogic.cs b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IOrderLogic.cs new file mode 100644 index 0000000..0bd427b --- /dev/null +++ b/FishFactory/FishFactoryContracts/BusinessLogicsContracts/IOrderLogic.cs @@ -0,0 +1,20 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.BusinessLogicsContracts +{ + public interface IOrderLogic + { + List? ReadList(OrderSearchModel? model); + bool CreateOrder(OrderBindingModel model); + bool TakeOrderInWork(OrderBindingModel model); + bool FinishOrder(OrderBindingModel model); + bool DeliveryOrder(OrderBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/Class1.cs b/FishFactory/FishFactoryContracts/Class1.cs new file mode 100644 index 0000000..7d967e2 --- /dev/null +++ b/FishFactory/FishFactoryContracts/Class1.cs @@ -0,0 +1,7 @@ +namespace FishFactoryContracts +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryContracts/FishFactoryContracts.csproj b/FishFactory/FishFactoryContracts/FishFactoryContracts.csproj new file mode 100644 index 0000000..41afc59 --- /dev/null +++ b/FishFactory/FishFactoryContracts/FishFactoryContracts.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/FishFactory/FishFactoryContracts/SearchModels/CannedSearchModel.cs b/FishFactory/FishFactoryContracts/SearchModels/CannedSearchModel.cs new file mode 100644 index 0000000..58fdce0 --- /dev/null +++ b/FishFactory/FishFactoryContracts/SearchModels/CannedSearchModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.SearchModels +{ + public class CannedSearchModel + { + public int? Id { get; set; } + public string? CannedName { get; set; } + } +} diff --git a/FishFactory/FishFactoryContracts/SearchModels/ComponentSearchModel.cs b/FishFactory/FishFactoryContracts/SearchModels/ComponentSearchModel.cs new file mode 100644 index 0000000..cdff7b4 --- /dev/null +++ b/FishFactory/FishFactoryContracts/SearchModels/ComponentSearchModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.SearchModels +{ + public class ComponentSearchModel + { + public int? Id { get; set; } + public string? ComponentName { get; set; } + } +} diff --git a/FishFactory/FishFactoryContracts/SearchModels/OrderSearchModel.cs b/FishFactory/FishFactoryContracts/SearchModels/OrderSearchModel.cs new file mode 100644 index 0000000..895b7e1 --- /dev/null +++ b/FishFactory/FishFactoryContracts/SearchModels/OrderSearchModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.SearchModels +{ + public class OrderSearchModel + { + public int? Id { get; set; } + } +} diff --git a/FishFactory/FishFactoryContracts/StoragesContracts/ICannedStorage.cs b/FishFactory/FishFactoryContracts/StoragesContracts/ICannedStorage.cs new file mode 100644 index 0000000..1d36d35 --- /dev/null +++ b/FishFactory/FishFactoryContracts/StoragesContracts/ICannedStorage.cs @@ -0,0 +1,21 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.StoragesContracts +{ + public interface ICannedStorage + { + List GetFullList(); + List GetFilteredList(CannedSearchModel model); + CannedViewModel? GetElement(CannedSearchModel model); + CannedViewModel? Insert(CannedBindingModel model); + CannedViewModel? Update(CannedBindingModel model); + CannedViewModel? Delete(CannedBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/StoragesContracts/IComponentStorage.cs b/FishFactory/FishFactoryContracts/StoragesContracts/IComponentStorage.cs new file mode 100644 index 0000000..7a0255c --- /dev/null +++ b/FishFactory/FishFactoryContracts/StoragesContracts/IComponentStorage.cs @@ -0,0 +1,21 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.StoragesContracts +{ + public interface IComponentStorage + { + List GetFullList(); + List GetFilteredList(ComponentSearchModel model); + ComponentViewModel? GetElement(ComponentSearchModel model); + ComponentViewModel? Insert(ComponentBindingModel model); + ComponentViewModel? Update(ComponentBindingModel model); + ComponentViewModel? Delete(ComponentBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/StoragesContracts/IOrderStorage.cs b/FishFactory/FishFactoryContracts/StoragesContracts/IOrderStorage.cs new file mode 100644 index 0000000..1f385c5 --- /dev/null +++ b/FishFactory/FishFactoryContracts/StoragesContracts/IOrderStorage.cs @@ -0,0 +1,21 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.StoragesContracts +{ + public interface IOrderStorage + { + List GetFullList(); + List GetFilteredList(OrderSearchModel model); + OrderViewModel? GetElement(OrderSearchModel model); + OrderViewModel? Insert(OrderBindingModel model); + OrderViewModel? Update(OrderBindingModel model); + OrderViewModel? Delete(OrderBindingModel model); + } +} diff --git a/FishFactory/FishFactoryContracts/ViewModels/CannedViewModel.cs b/FishFactory/FishFactoryContracts/ViewModels/CannedViewModel.cs new file mode 100644 index 0000000..e8b8840 --- /dev/null +++ b/FishFactory/FishFactoryContracts/ViewModels/CannedViewModel.cs @@ -0,0 +1,20 @@ +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.ViewModels +{ + public class CannedViewModel : ICannedModel + { + public int Id { get; set; } + [DisplayName("Название изделия")] + public string CannedName { get; set; } = string.Empty; + [DisplayName("Цена")] + public double Price { get; set; } + public Dictionary CannedComponents { get; set; } = new(); + } +} diff --git a/FishFactory/FishFactoryContracts/ViewModels/ComponentViewModel.cs b/FishFactory/FishFactoryContracts/ViewModels/ComponentViewModel.cs new file mode 100644 index 0000000..8836d4e --- /dev/null +++ b/FishFactory/FishFactoryContracts/ViewModels/ComponentViewModel.cs @@ -0,0 +1,19 @@ +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.ViewModels +{ + public class ComponentViewModel : IComponentModel + { + public int Id { get; set; } + [DisplayName("Название компонента")] + public string ComponentName { get; set; } = string.Empty; + [DisplayName("Цена")] + public double Cost { get; set; } + } +} diff --git a/FishFactory/FishFactoryContracts/ViewModels/OrderViewModel.cs b/FishFactory/FishFactoryContracts/ViewModels/OrderViewModel.cs new file mode 100644 index 0000000..363f626 --- /dev/null +++ b/FishFactory/FishFactoryContracts/ViewModels/OrderViewModel.cs @@ -0,0 +1,30 @@ +using FishFactoryDataModels.Enums; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryContracts.ViewModels +{ + public class OrderViewModel : IOrderModel + { + [DisplayName("Номер")] + public int Id { get; set; } + public int CannedId { get; set; } + [DisplayName("Консерва")] + public string CannedName { get; set; } = string.Empty; + [DisplayName("Количество")] + public int Count { get; set; } + [DisplayName("Сумма")] + public double Sum { get; set; } + [DisplayName("Статус")] + public OrderStatus Status { get; set; } = OrderStatus.Неизвестен; + [DisplayName("Дата создания")] + public DateTime DateCreate { get; set; } = DateTime.Now; + [DisplayName("Дата выполнения")] + public DateTime? DateImplement { get; set; } + } +} diff --git a/FishFactory/FishFactoryDataModels/Class1.cs b/FishFactory/FishFactoryDataModels/Class1.cs new file mode 100644 index 0000000..ce34be4 --- /dev/null +++ b/FishFactory/FishFactoryDataModels/Class1.cs @@ -0,0 +1,7 @@ +namespace FishFactoryDataModels +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryDataModels/Enums/OrderStatus.cs b/FishFactory/FishFactoryDataModels/Enums/OrderStatus.cs new file mode 100644 index 0000000..a4e411f --- /dev/null +++ b/FishFactory/FishFactoryDataModels/Enums/OrderStatus.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryDataModels.Enums +{ + public enum OrderStatus + { + Неизвестен = -1, + Принят = 0, + Выполняется = 1, + Готов = 2, + Выдан = 3 + } +} diff --git a/FishFactory/FishFactoryDataModels/FishFactoryDataModels.csproj b/FishFactory/FishFactoryDataModels/FishFactoryDataModels.csproj new file mode 100644 index 0000000..092a4ce --- /dev/null +++ b/FishFactory/FishFactoryDataModels/FishFactoryDataModels.csproj @@ -0,0 +1,15 @@ + + + + net6.0 + enable + enable + + + + + + + + + diff --git a/FishFactory/FishFactoryDataModels/IId.cs b/FishFactory/FishFactoryDataModels/IId.cs new file mode 100644 index 0000000..74bedc8 --- /dev/null +++ b/FishFactory/FishFactoryDataModels/IId.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryDataModels +{ + public interface IId + { + int Id { get; } + } +} diff --git a/FishFactory/FishFactoryDataModels/Models/ICannedModel.cs b/FishFactory/FishFactoryDataModels/Models/ICannedModel.cs new file mode 100644 index 0000000..8d33754 --- /dev/null +++ b/FishFactory/FishFactoryDataModels/Models/ICannedModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryDataModels.Models +{ + public interface ICannedModel : IId + { + string CannedName { get; } + double Price { get; } + Dictionary CannedComponents { get; } + } +} diff --git a/FishFactory/FishFactoryDataModels/Models/IComponentModel.cs b/FishFactory/FishFactoryDataModels/Models/IComponentModel.cs new file mode 100644 index 0000000..5c2b4c4 --- /dev/null +++ b/FishFactory/FishFactoryDataModels/Models/IComponentModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryDataModels.Models +{ + public interface IComponentModel : IId + { + string ComponentName { get; } + double Cost { get; } + } +} diff --git a/FishFactory/FishFactoryDataModels/Models/IOrderModel.cs b/FishFactory/FishFactoryDataModels/Models/IOrderModel.cs new file mode 100644 index 0000000..a4c0a00 --- /dev/null +++ b/FishFactory/FishFactoryDataModels/Models/IOrderModel.cs @@ -0,0 +1,19 @@ +using FishFactoryDataModels.Enums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryDataModels.Models +{ + public interface IOrderModel : IId + { + int CannedId { get; } + int Count { get; } + double Sum { get; } + OrderStatus Status { get; } + DateTime DateCreate { get; } + DateTime? DateImplement { get; } + } +} diff --git a/FishFactory/FishFactoryListImplement/Class1.cs b/FishFactory/FishFactoryListImplement/Class1.cs new file mode 100644 index 0000000..4da4614 --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Class1.cs @@ -0,0 +1,7 @@ +namespace FishFactoryListImplement +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryListImplement/DataListSingleton.cs b/FishFactory/FishFactoryListImplement/DataListSingleton.cs new file mode 100644 index 0000000..751fc45 --- /dev/null +++ b/FishFactory/FishFactoryListImplement/DataListSingleton.cs @@ -0,0 +1,31 @@ +using FishFactoryListImplement.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement +{ + public class DataListSingleton + { + private static DataListSingleton? _instance; + public List Components { get; set; } + public List Orders { get; set; } + public List Canneds { get; set; } + private DataListSingleton() + { + Components = new List(); + Orders = new List(); + Canneds = new List(); + } + public static DataListSingleton GetInstance() + { + if (_instance == null) + { + _instance = new DataListSingleton(); + } + return _instance; + } + } +} diff --git a/FishFactory/FishFactoryListImplement/FishFactoryListImplement.csproj b/FishFactory/FishFactoryListImplement/FishFactoryListImplement.csproj new file mode 100644 index 0000000..b2c107f --- /dev/null +++ b/FishFactory/FishFactoryListImplement/FishFactoryListImplement.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + diff --git a/FishFactory/FishFactoryListImplement/Implements/CannedStorage.cs b/FishFactory/FishFactoryListImplement/Implements/CannedStorage.cs new file mode 100644 index 0000000..3cd9380 --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Implements/CannedStorage.cs @@ -0,0 +1,107 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryListImplement.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Implements +{ + public class CannedStorage : ICannedStorage + { + private readonly DataListSingleton _source; + public CannedStorage() + { + _source = DataListSingleton.GetInstance(); + } + public List GetFullList() + { + var result = new List(); + foreach (var Canned in _source.Canneds) + { + result.Add(Canned.GetViewModel); + } + return result; + } + public List GetFilteredList(CannedSearchModel model) + { + var result = new List(); + if (string.IsNullOrEmpty(model.CannedName)) + { + return result; + } + foreach (var Canned in _source.Canneds) + { + if (Canned.CannedName.Contains(model.CannedName)) + { + result.Add(Canned.GetViewModel); + } + } + return result; + } + public CannedViewModel? GetElement(CannedSearchModel model) + { + if (string.IsNullOrEmpty(model.CannedName) && !model.Id.HasValue) + { + return null; + } + foreach (var Canned in _source.Canneds) + { + if ((!string.IsNullOrEmpty(model.CannedName) && + Canned.CannedName == model.CannedName) || + (model.Id.HasValue && Canned.Id == model.Id)) + { + return Canned.GetViewModel; + } + } + return null; + } + public CannedViewModel? Insert(CannedBindingModel model) + { + model.Id = 1; + foreach (var Canned in _source.Canneds) + { + if (model.Id <= Canned.Id) + { + model.Id = Canned.Id + 1; + } + } + var newCanned = Canned.Create(model); + if (newCanned == null) + { + return null; + } + _source.Canneds.Add(newCanned); + return newCanned.GetViewModel; + } + public CannedViewModel? Update(CannedBindingModel model) + { + foreach (var Canned in _source.Canneds) + { + if (Canned.Id == model.Id) + { + Canned.Update(model); + return Canned.GetViewModel; + } + } + return null; + } + public CannedViewModel? Delete(CannedBindingModel model) + { + for (int i = 0; i < _source.Canneds.Count; ++i) + { + if (_source.Canneds[i].Id == model.Id) + { + var element = _source.Canneds[i]; + _source.Canneds.RemoveAt(i); + return element.GetViewModel; + } + } + return null; + } + } +} diff --git a/FishFactory/FishFactoryListImplement/Implements/ComponentStorage.cs b/FishFactory/FishFactoryListImplement/Implements/ComponentStorage.cs new file mode 100644 index 0000000..aa27a3d --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Implements/ComponentStorage.cs @@ -0,0 +1,109 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryListImplement.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Implements +{ + public class ComponentStorage : IComponentStorage + { + private readonly DataListSingleton _source; + public ComponentStorage() + { + _source = DataListSingleton.GetInstance(); + } + public List GetFullList() + { + var result = new List(); + foreach (var component in _source.Components) + { + result.Add(component.GetViewModel); + } + return result; + } + public List GetFilteredList(ComponentSearchModel + model) + { + var result = new List(); + if (string.IsNullOrEmpty(model.ComponentName)) + { + return result; + } + foreach (var component in _source.Components) + { + if (component.ComponentName.Contains(model.ComponentName)) + { + result.Add(component.GetViewModel); + } + } + return result; + } + public ComponentViewModel? GetElement(ComponentSearchModel model) + { + if (string.IsNullOrEmpty(model.ComponentName) && !model.Id.HasValue) + { + return null; + } + foreach (var component in _source.Components) + { + if ((!string.IsNullOrEmpty(model.ComponentName) && + component.ComponentName == model.ComponentName) || + (model.Id.HasValue && component.Id == model.Id)) + { + return component.GetViewModel; + } + } + return null; + } + public ComponentViewModel? Insert(ComponentBindingModel model) + { + model.Id = 1; + foreach (var component in _source.Components) + { + if (model.Id <= component.Id) + { + model.Id = component.Id + 1; + } + } + var newComponent = Component.Create(model); + if (newComponent == null) + { + return null; + } + _source.Components.Add(newComponent); + return newComponent.GetViewModel; + } + public ComponentViewModel? Update(ComponentBindingModel model) + { + foreach (var component in _source.Components) + { + if (component.Id == model.Id) + { + component.Update(model); + return component.GetViewModel; + } + } + return null; + } + public ComponentViewModel? Delete(ComponentBindingModel model) + { + for (int i = 0; i < _source.Components.Count; ++i) + { + if (_source.Components[i].Id == model.Id) + { + var element = _source.Components[i]; + _source.Components.RemoveAt(i); + return element.GetViewModel; + } + } + return null; + } + + } +} diff --git a/FishFactory/FishFactoryListImplement/Implements/OrderStorage.cs b/FishFactory/FishFactoryListImplement/Implements/OrderStorage.cs new file mode 100644 index 0000000..556a5ab --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Implements/OrderStorage.cs @@ -0,0 +1,119 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryListImplement.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Implements +{ + public class OrderStorage : IOrderStorage + { + private readonly DataListSingleton _source; + public OrderStorage() + { + _source = DataListSingleton.GetInstance(); + } + public List GetFullList() + { + var result = new List(); + foreach (var order in _source.Orders) + { + result.Add(AccessCannedStorage(order.GetViewModel)); + } + return result; + } + public List GetFilteredList(OrderSearchModel + model) + { + var result = new List(); + if (!model.Id.HasValue) + { + return result; + } + foreach (var order in _source.Orders) + { + if (order.Id == model.Id) + { + result.Add(AccessCannedStorage(order.GetViewModel)); + } + } + return result; + } + public OrderViewModel? GetElement(OrderSearchModel model) + { + if (!model.Id.HasValue) + { + return null; + } + foreach (var order in _source.Orders) + { + if (model.Id.HasValue && order.Id == model.Id) + { + return order.GetViewModel; + } + } + return null; + } + public OrderViewModel? Insert(OrderBindingModel model) + { + model.Id = 1; + foreach (var order in _source.Orders) + { + if (model.Id <= order.Id) + { + model.Id = order.Id + 1; + } + } + var newOrder = Order.Create(model); + if (newOrder == null) + { + return null; + } + _source.Orders.Add(newOrder); + return newOrder.GetViewModel; + } + public OrderViewModel? Update(OrderBindingModel model) + { + foreach (var order in _source.Orders) + { + if (order.Id == model.Id) + { + order.Update(model); + return order.GetViewModel; + } + } + return null; + } + public OrderViewModel? Delete(OrderBindingModel model) + { + for (int i = 0; i < _source.Orders.Count; ++i) + { + if (_source.Orders[i].Id == model.Id) + { + var element = _source.Orders[i]; + _source.Orders.RemoveAt(i); + return element.GetViewModel; + } + } + return null; + } + + public OrderViewModel AccessCannedStorage(OrderViewModel model) + { + foreach (var canned in _source.Canneds) + { + if (canned.Id == model.CannedId) + { + model.CannedName = canned.CannedName; + break; + } + } + return model; + } + } +} diff --git a/FishFactory/FishFactoryListImplement/Models/Canned.cs b/FishFactory/FishFactoryListImplement/Models/Canned.cs new file mode 100644 index 0000000..0f25bf6 --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Models/Canned.cs @@ -0,0 +1,55 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Models +{ + public class Canned : ICannedModel + { + public int Id { get; private set; } + public string CannedName { get; private set; } = string.Empty; + public double Price { get; private set; } + public Dictionary CannedComponents + { + get; + private set; + } = new Dictionary(); + public static Canned? Create(CannedBindingModel? model) + { + if (model == null) + { + return null; + } + return new Canned() + { + Id = model.Id, + CannedName = model.CannedName, + Price = model.Price, + CannedComponents = model.CannedComponents + }; + } + public void Update(CannedBindingModel? model) + { + if (model == null) + { + return; + } + CannedName = model.CannedName; + Price = model.Price; + CannedComponents = model.CannedComponents; + } + public CannedViewModel GetViewModel => new() + { + Id = Id, + CannedName = CannedName, + Price = Price, + CannedComponents = CannedComponents + }; + + } +} diff --git a/FishFactory/FishFactoryListImplement/Models/Component.cs b/FishFactory/FishFactoryListImplement/Models/Component.cs new file mode 100644 index 0000000..2f5d44f --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Models/Component.cs @@ -0,0 +1,46 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Models +{ + public class Component : IComponentModel + { + public int Id { get; private set; } + public string ComponentName { get; private set; } = string.Empty; + public double Cost { get; set; } + public static Component? Create(ComponentBindingModel? model) + { + if (model == null) + { + return null; + } + return new Component() + { + Id = model.Id, + ComponentName = model.ComponentName, + Cost = model.Cost + }; + } + public void Update(ComponentBindingModel? model) + { + if (model == null) + { + return; + } + ComponentName = model.ComponentName; + Cost = model.Cost; + } + public ComponentViewModel GetViewModel => new() + { + Id = Id, + ComponentName = ComponentName, + Cost = Cost + }; + } +} diff --git a/FishFactory/FishFactoryListImplement/Models/Order.cs b/FishFactory/FishFactoryListImplement/Models/Order.cs new file mode 100644 index 0000000..13edd4c --- /dev/null +++ b/FishFactory/FishFactoryListImplement/Models/Order.cs @@ -0,0 +1,63 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Enums; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FishFactoryListImplement.Models +{ + public class Order : IOrderModel + { + public int Id { get; private set; } + public int CannedId { get; private set; } + public int Count { get; private set; } + public double Sum { get; private set; } + public OrderStatus Status { get; private set; } + public DateTime DateCreate { get; private set; } + public DateTime? DateImplement { get; private set; } + + public static Order? Create(OrderBindingModel? model) + { + if (model == null) + { + return null; + } + return new Order() + { + Id = model.Id, + CannedId = model.CannedId, + Count = model.Count, + Sum = model.Sum, + Status = model.Status, + DateCreate = model.DateCreate, + DateImplement = model.DateImplement, + }; + } + public void Update(OrderBindingModel? model) + { + if (model == null) + { + return; + } + Status = model.Status; + if (model.DateImplement.HasValue) + { + DateImplement = model.DateImplement; + } + } + public OrderViewModel GetViewModel => new() + { + Id = Id, + CannedId = CannedId, + Count = Count, + Sum = Sum, + Status = Status, + DateCreate = DateCreate, + DateImplement = DateImplement, + }; + } +} diff --git a/FishFactory/FishFactoryView/FishFactoryView.csproj b/FishFactory/FishFactoryView/FishFactoryView.csproj new file mode 100644 index 0000000..b38dd5a --- /dev/null +++ b/FishFactory/FishFactoryView/FishFactoryView.csproj @@ -0,0 +1,22 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + + + + + + + + + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCanned.Designer.cs b/FishFactory/FishFactoryView/FormCanned.Designer.cs new file mode 100644 index 0000000..51a4f54 --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanned.Designer.cs @@ -0,0 +1,220 @@ +namespace FishFactoryView +{ + partial class FormCanned + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + label1 = new Label(); + label2 = new Label(); + textBoxName = new TextBox(); + textBoxPrice = new TextBox(); + ButtonCancel = new Button(); + ButtonSave = new Button(); + groupBox1 = new GroupBox(); + ButtonRef = new Button(); + ButtonDel = new Button(); + ButtonUpd = new Button(); + ButtonAdd = new Button(); + dataGridView = new DataGridView(); + Component = new DataGridViewTextBoxColumn(); + Cost = new DataGridViewTextBoxColumn(); + groupBox1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(29, 18); + label1.Name = "label1"; + label1.Size = new Size(80, 20); + label1.TabIndex = 0; + label1.Text = "Название:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(29, 54); + label2.Name = "label2"; + label2.Size = new Size(86, 20); + label2.TabIndex = 1; + label2.Text = "Стоимость:"; + // + // textBoxName + // + textBoxName.Location = new Point(128, 15); + textBoxName.Name = "textBoxName"; + textBoxName.Size = new Size(403, 27); + textBoxName.TabIndex = 2; + // + // textBoxPrice + // + textBoxPrice.Location = new Point(128, 51); + textBoxPrice.Name = "textBoxPrice"; + textBoxPrice.Size = new Size(201, 27); + textBoxPrice.TabIndex = 3; + // + // ButtonCancel + // + ButtonCancel.Location = new Point(726, 545); + ButtonCancel.Name = "ButtonCancel"; + ButtonCancel.Size = new Size(94, 29); + ButtonCancel.TabIndex = 4; + ButtonCancel.Text = "Отмена"; + ButtonCancel.UseVisualStyleBackColor = true; + ButtonCancel.Click += ButtonCancel_Click; + // + // ButtonSave + // + ButtonSave.Location = new Point(609, 545); + ButtonSave.Name = "ButtonSave"; + ButtonSave.Size = new Size(94, 29); + ButtonSave.TabIndex = 5; + ButtonSave.Text = "Сохранить"; + ButtonSave.UseVisualStyleBackColor = true; + ButtonSave.Click += ButtonSave_Click; + // + // groupBox1 + // + groupBox1.Controls.Add(ButtonRef); + groupBox1.Controls.Add(ButtonDel); + groupBox1.Controls.Add(ButtonUpd); + groupBox1.Controls.Add(ButtonAdd); + groupBox1.Controls.Add(dataGridView); + groupBox1.Location = new Point(12, 94); + groupBox1.Name = "groupBox1"; + groupBox1.Size = new Size(833, 445); + groupBox1.TabIndex = 6; + groupBox1.TabStop = false; + groupBox1.Text = "Компоненты"; + // + // ButtonRef + // + ButtonRef.Location = new Point(714, 230); + ButtonRef.Name = "ButtonRef"; + ButtonRef.Size = new Size(94, 29); + ButtonRef.TabIndex = 4; + ButtonRef.Text = "Обновить"; + ButtonRef.UseVisualStyleBackColor = true; + ButtonRef.Click += ButtonRef_Click; + // + // ButtonDel + // + ButtonDel.Location = new Point(714, 171); + ButtonDel.Name = "ButtonDel"; + ButtonDel.Size = new Size(94, 29); + ButtonDel.TabIndex = 3; + ButtonDel.Text = "Удалить"; + ButtonDel.UseVisualStyleBackColor = true; + ButtonDel.Click += ButtonDel_Click; + // + // ButtonUpd + // + ButtonUpd.Location = new Point(714, 114); + ButtonUpd.Name = "ButtonUpd"; + ButtonUpd.Size = new Size(94, 29); + ButtonUpd.TabIndex = 2; + ButtonUpd.Text = "Изменить"; + ButtonUpd.UseVisualStyleBackColor = true; + ButtonUpd.Click += ButtonUpd_Click; + // + // ButtonAdd + // + ButtonAdd.Location = new Point(714, 57); + ButtonAdd.Name = "ButtonAdd"; + ButtonAdd.Size = new Size(94, 29); + ButtonAdd.TabIndex = 1; + ButtonAdd.Text = "Добавить"; + ButtonAdd.UseVisualStyleBackColor = true; + ButtonAdd.Click += ButtonAdd_Click; + // + // dataGridView + // + dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridView.Columns.AddRange(new DataGridViewColumn[] { Component, Cost }); + dataGridView.Location = new Point(10, 24); + dataGridView.Name = "dataGridView"; + dataGridView.RowHeadersWidth = 51; + dataGridView.RowTemplate.Height = 29; + dataGridView.Size = new Size(662, 415); + dataGridView.TabIndex = 0; + // + // Component + // + Component.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + Component.Frozen = true; + Component.HeaderText = "Компонент"; + Component.MinimumWidth = 6; + Component.Name = "Component"; + Component.Width = 484; + // + // Cost + // + Cost.HeaderText = "Количество"; + Cost.MinimumWidth = 6; + Cost.Name = "Cost"; + Cost.Width = 125; + // + // FormCanned + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(857, 586); + Controls.Add(groupBox1); + Controls.Add(ButtonSave); + Controls.Add(ButtonCancel); + Controls.Add(textBoxPrice); + Controls.Add(textBoxName); + Controls.Add(label2); + Controls.Add(label1); + Name = "FormCanned"; + Text = "Консерва"; + Load += FormCanned_Load; + groupBox1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label2; + private TextBox textBoxName; + private TextBox textBoxPrice; + private Button ButtonCancel; + private Button ButtonSave; + private GroupBox groupBox1; + private DataGridView dataGridView; + private Button ButtonRef; + private Button ButtonDel; + private Button ButtonUpd; + private Button ButtonAdd; + private DataGridViewTextBoxColumn Component; + private DataGridViewTextBoxColumn Cost; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCanned.cs b/FishFactory/FishFactoryView/FormCanned.cs new file mode 100644 index 0000000..f2b79e5 --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanned.cs @@ -0,0 +1,220 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; +using FishFactoryDataModels.Models; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class FormCanned : Form + { + private readonly ILogger _logger; + private readonly ICannedLogic _logic; + private int? _id; + private Dictionary _CannedComponents; + public int Id { set { _id = value; } } + public FormCanned(ILogger logger, ICannedLogic logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + _CannedComponents = new Dictionary(); + } + private void FormCanned_Load(object sender, EventArgs e) + { + if (_id.HasValue) + { + _logger.LogInformation("Загрузка изделия"); + try + { + var view = _logic.ReadElement(new CannedSearchModel { Id = _id.Value }); + if (view != null) + { + textBoxName.Text = view.CannedName; + textBoxPrice.Text = view.Price.ToString(); + _CannedComponents = view.CannedComponents ?? new + Dictionary(); + LoadData(); + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки изделия"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + } + private void LoadData() + { + _logger.LogInformation("Загрузка компонент изделия"); + try + { + if (_CannedComponents != null) + { + dataGridView.Rows.Clear(); + foreach (var pc in _CannedComponents) + { + dataGridView.Rows.Add(new object[] { pc.Value.Item1.ComponentName, pc.Value.Item2 }); + } + textBoxPrice.Text = CalcPrice().ToString(); + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки компонент изделия"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void ButtonAdd_Click(object sender, EventArgs e) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormCannedComponent)); + if (service is FormCannedComponent form) + { + if (form.ShowDialog() == DialogResult.OK) + { + if (form.ComponentModel == null) + { + return; + } + _logger.LogInformation("Добавление нового компонента: { ComponentName} - { Count}", form.ComponentModel.ComponentName, form.Count); + if (_CannedComponents.ContainsKey(form.Id)) + { + _CannedComponents[form.Id] = (form.ComponentModel, + form.Count); + } + else + { + _CannedComponents.Add(form.Id, (form.ComponentModel, + form.Count)); + } + LoadData(); + } + } + } + private void ButtonUpd_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormCannedComponent)); + if (service is FormCannedComponent form) + { + int id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value); + form.Id = id; + form.Count = _CannedComponents[id].Item2; + if (form.ShowDialog() == DialogResult.OK) + { + if (form.ComponentModel == null) + { + return; + } + _logger.LogInformation("Изменение компонента: { ComponentName} - { Count}", form.ComponentModel.ComponentName, form.Count); + _CannedComponents[form.Id] = (form.ComponentModel, + form.Count); + LoadData(); + } + } + } + } + private void ButtonDel_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + if (MessageBox.Show("Удалить запись?", "Вопрос", + MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + { + try + { + _logger.LogInformation("Удаление компонента: { ComponentName} - { Count}", dataGridView.SelectedRows[0].Cells[1].Value); + _CannedComponents?.Remove(Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value)); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + } + LoadData(); + } + } + } + private void ButtonRef_Click(object sender, EventArgs e) + { + LoadData(); + } + private void ButtonSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(textBoxName.Text)) + { + MessageBox.Show("Заполните название", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + if (string.IsNullOrEmpty(textBoxPrice.Text)) + { + MessageBox.Show("Заполните цену", "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + return; + } + if (_CannedComponents == null || _CannedComponents.Count == 0) + { + MessageBox.Show("Заполните компоненты", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + _logger.LogInformation("Сохранение изделия"); + try + { + var model = new CannedBindingModel + { + Id = _id ?? 0, + CannedName = textBoxName.Text, + Price = Convert.ToDouble(textBoxPrice.Text), + CannedComponents = _CannedComponents + }; + var operationResult = _id.HasValue ? _logic.Update(model) : + _logic.Create(model); + if (!operationResult) + { + throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); + } + MessageBox.Show("Сохранение прошло успешно", "Сообщение", + MessageBoxButtons.OK, MessageBoxIcon.Information); + DialogResult = DialogResult.OK; + Close(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка сохранения изделия"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void ButtonCancel_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + private double CalcPrice() + { + double price = 0; + foreach (var elem in _CannedComponents) + { + price += ((elem.Value.Item1?.Cost ?? 0) * elem.Value.Item2); + } + return Math.Round(price, 2); + } + } +} diff --git a/FishFactory/FishFactoryView/FormCanned.resx b/FishFactory/FishFactoryView/FormCanned.resx new file mode 100644 index 0000000..ac743bd --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanned.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCannedComponent.Designer.cs b/FishFactory/FishFactoryView/FormCannedComponent.Designer.cs new file mode 100644 index 0000000..fce408d --- /dev/null +++ b/FishFactory/FishFactoryView/FormCannedComponent.Designer.cs @@ -0,0 +1,118 @@ +namespace FishFactoryView +{ + partial class FormCannedComponent + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + label1 = new Label(); + label2 = new Label(); + comboBoxComponent = new ComboBox(); + textBoxCount = new TextBox(); + ButtonSave = new Button(); + ButtonCancel = new Button(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(12, 18); + label1.Name = "label1"; + label1.Size = new Size(91, 20); + label1.TabIndex = 0; + label1.Text = "Компонент:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(12, 59); + label2.Name = "label2"; + label2.Size = new Size(93, 20); + label2.TabIndex = 1; + label2.Text = "Количество:"; + // + // comboBoxComponent + // + comboBoxComponent.FormattingEnabled = true; + comboBoxComponent.Location = new Point(109, 15); + comboBoxComponent.Name = "comboBoxComponent"; + comboBoxComponent.Size = new Size(319, 28); + comboBoxComponent.TabIndex = 2; + // + // textBoxCount + // + textBoxCount.Location = new Point(109, 52); + textBoxCount.Name = "textBoxCount"; + textBoxCount.Size = new Size(319, 27); + textBoxCount.TabIndex = 3; + // + // ButtonSave + // + ButtonSave.Location = new Point(218, 96); + ButtonSave.Name = "ButtonSave"; + ButtonSave.Size = new Size(94, 29); + ButtonSave.TabIndex = 4; + ButtonSave.Text = "Сохранить"; + ButtonSave.UseVisualStyleBackColor = true; + ButtonSave.Click += ButtonSave_Click; + // + // ButtonCancel + // + ButtonCancel.Location = new Point(334, 96); + ButtonCancel.Name = "ButtonCancel"; + ButtonCancel.Size = new Size(94, 29); + ButtonCancel.TabIndex = 5; + ButtonCancel.Text = "Отмена"; + ButtonCancel.UseVisualStyleBackColor = true; + ButtonCancel.Click += ButtonCancel_Click; + // + // FormCannedComponent + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(440, 145); + Controls.Add(ButtonCancel); + Controls.Add(ButtonSave); + Controls.Add(textBoxCount); + Controls.Add(comboBoxComponent); + Controls.Add(label2); + Controls.Add(label1); + Name = "FormCannedComponent"; + Text = "Компонент консервы"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label2; + private ComboBox comboBoxComponent; + private TextBox textBoxCount; + private Button ButtonSave; + private Button ButtonCancel; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCannedComponent.cs b/FishFactory/FishFactoryView/FormCannedComponent.cs new file mode 100644 index 0000000..7b6bc62 --- /dev/null +++ b/FishFactory/FishFactoryView/FormCannedComponent.cs @@ -0,0 +1,90 @@ +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class FormCannedComponent : Form + { + private readonly List? _list; + public int Id + { + get + { + return + Convert.ToInt32(comboBoxComponent.SelectedValue); + } + set + { + comboBoxComponent.SelectedValue = value; + } + } + public IComponentModel? ComponentModel + { + get + { + if (_list == null) + { + return null; + } + foreach (var elem in _list) + { + if (elem.Id == Id) + { + return elem; + } + } + return null; + } + } + public int Count + { + get { return Convert.ToInt32(textBoxCount.Text); } + set + { textBoxCount.Text = value.ToString(); } + } + public FormCannedComponent(IComponentLogic logic) + { + InitializeComponent(); + _list = logic.ReadList(null); + if (_list != null) + { + comboBoxComponent.DisplayMember = "ComponentName"; + comboBoxComponent.ValueMember = "Id"; + comboBoxComponent.DataSource = _list; + comboBoxComponent.SelectedItem = null; + } + } + private void ButtonSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(textBoxCount.Text)) + { + MessageBox.Show("Заполните поле Количество", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + if (comboBoxComponent.SelectedValue == null) + { + MessageBox.Show("Выберите компонент", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + DialogResult = DialogResult.OK; + Close(); + } + private void ButtonCancel_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + } +} diff --git a/FishFactory/FishFactoryView/FormCannedComponent.resx b/FishFactory/FishFactoryView/FormCannedComponent.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/FishFactory/FishFactoryView/FormCannedComponent.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCanneds.Designer.cs b/FishFactory/FishFactoryView/FormCanneds.Designer.cs new file mode 100644 index 0000000..e9e52b1 --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanneds.Designer.cs @@ -0,0 +1,113 @@ +namespace FishFactoryView +{ + partial class FormCanneds + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + dataGridView = new DataGridView(); + AddButton = new Button(); + UpdateButton = new Button(); + DeleteButton = new Button(); + RefreshButton = new Button(); + ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); + SuspendLayout(); + // + // dataGridView + // + dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridView.Location = new Point(0, 0); + dataGridView.Name = "dataGridView"; + dataGridView.RowHeadersWidth = 51; + dataGridView.RowTemplate.Height = 29; + dataGridView.Size = new Size(634, 456); + dataGridView.TabIndex = 0; + // + // AddButton + // + AddButton.Location = new Point(675, 29); + AddButton.Name = "AddButton"; + AddButton.Size = new Size(94, 29); + AddButton.TabIndex = 1; + AddButton.Text = "Добавить"; + AddButton.UseVisualStyleBackColor = true; + AddButton.Click += AddButton_Click; + // + // UpdateButton + // + UpdateButton.Location = new Point(675, 89); + UpdateButton.Name = "UpdateButton"; + UpdateButton.Size = new Size(94, 29); + UpdateButton.TabIndex = 2; + UpdateButton.Text = "Изменить"; + UpdateButton.UseVisualStyleBackColor = true; + UpdateButton.Click += UpdateButton_Click; + // + // DeleteButton + // + DeleteButton.Location = new Point(675, 146); + DeleteButton.Name = "DeleteButton"; + DeleteButton.Size = new Size(94, 29); + DeleteButton.TabIndex = 3; + DeleteButton.Text = "Удалить"; + DeleteButton.UseVisualStyleBackColor = true; + DeleteButton.Click += DeleteButton_Click; + // + // RefreshButton + // + RefreshButton.Location = new Point(675, 208); + RefreshButton.Name = "RefreshButton"; + RefreshButton.Size = new Size(94, 29); + RefreshButton.TabIndex = 4; + RefreshButton.Text = "Обновить"; + RefreshButton.UseVisualStyleBackColor = true; + RefreshButton.Click += RefreshButton_Click; + // + // FormCanneds + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(805, 457); + Controls.Add(RefreshButton); + Controls.Add(DeleteButton); + Controls.Add(UpdateButton); + Controls.Add(AddButton); + Controls.Add(dataGridView); + Name = "FormCanneds"; + Text = "Консервы"; + ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); + ResumeLayout(false); + } + + #endregion + + private DataGridView dataGridView; + private Button AddButton; + private Button UpdateButton; + private Button DeleteButton; + private Button RefreshButton; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCanneds.cs b/FishFactory/FishFactoryView/FormCanneds.cs new file mode 100644 index 0000000..b9f762b --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanneds.cs @@ -0,0 +1,113 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class FormCanneds : Form + { + private readonly ILogger _logger; + private readonly ICannedLogic _logic; + public FormCanneds(ILogger logger, ICannedLogic logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + } + private void FormCanneds_Load(object sender, EventArgs e) + { + LoadData(); + } + private void LoadData() + { + try + { + var list = _logic.ReadList(null); + if (list != null) + { + dataGridView.DataSource = list; + dataGridView.Columns["Id"].Visible = false; + dataGridView.Columns["CannedName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + dataGridView.Columns["CannedComponents"].Visible = false; + } + _logger.LogInformation("Загрузка консервы"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки консервы"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + private void AddButton_Click(object sender, EventArgs e) + { + var service = Program.ServiceProvider?.GetService(typeof(FormCanned)); + if (service is FormCanned form) + { + if (form.ShowDialog() == DialogResult.OK) + { + LoadData(); + } + } + } + + private void UpdateButton_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + var service = Program.ServiceProvider?.GetService(typeof(FormCanned)); + if (service is FormCanned form) + { + var tmp = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + if (form.ShowDialog() == DialogResult.OK) + { + LoadData(); + } + } + } + } + + private void DeleteButton_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + { + int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + _logger.LogInformation("Удаление консервы"); + try + { + if (!_logic.Delete(new CannedBindingModel + { + Id = id + })) + { + throw new Exception("Ошибка при удалении. Дополнительная информация в логах."); + } + LoadData(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка удаления консервы"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + } + + private void RefreshButton_Click(object sender, EventArgs e) + { + LoadData(); + + } + } +} diff --git a/FishFactory/FishFactoryView/FormCanneds.resx b/FishFactory/FishFactoryView/FormCanneds.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/FishFactory/FishFactoryView/FormCanneds.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormComponent.Designer.cs b/FishFactory/FishFactoryView/FormComponent.Designer.cs new file mode 100644 index 0000000..60e7da5 --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponent.Designer.cs @@ -0,0 +1,118 @@ +namespace FishFactoryView +{ + partial class FormComponent + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + label1 = new Label(); + label2 = new Label(); + textBoxName = new TextBox(); + textBoxCost = new TextBox(); + buttonSave = new Button(); + buttonCancel = new Button(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(22, 19); + label1.Name = "label1"; + label1.Size = new Size(80, 20); + label1.TabIndex = 0; + label1.Text = "Название:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(22, 60); + label2.Name = "label2"; + label2.Size = new Size(48, 20); + label2.TabIndex = 1; + label2.Text = "Цена:"; + // + // textBoxName + // + textBoxName.Location = new Point(108, 19); + textBoxName.Name = "textBoxName"; + textBoxName.Size = new Size(284, 27); + textBoxName.TabIndex = 2; + // + // textBoxCost + // + textBoxCost.Location = new Point(108, 60); + textBoxCost.Name = "textBoxCost"; + textBoxCost.Size = new Size(146, 27); + textBoxCost.TabIndex = 3; + // + // buttonSave + // + buttonSave.Location = new Point(187, 105); + buttonSave.Name = "buttonSave"; + buttonSave.Size = new Size(94, 29); + buttonSave.TabIndex = 4; + buttonSave.Text = "Сохранить"; + buttonSave.UseVisualStyleBackColor = true; + buttonSave.Click += ButtonSave_Click; + // + // buttonCancel + // + buttonCancel.Location = new Point(298, 105); + buttonCancel.Name = "buttonCancel"; + buttonCancel.Size = new Size(94, 29); + buttonCancel.TabIndex = 5; + buttonCancel.Text = "Отмена"; + buttonCancel.UseVisualStyleBackColor = true; + buttonCancel.Click += ButtonCancel_Click; + // + // FormComponent + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(416, 153); + Controls.Add(buttonCancel); + Controls.Add(buttonSave); + Controls.Add(textBoxCost); + Controls.Add(textBoxName); + Controls.Add(label2); + Controls.Add(label1); + Name = "FormComponent"; + Text = "Компонент"; + Load += FormComponent_Load; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label2; + private TextBox textBoxName; + private TextBox textBoxCost; + private Button buttonSave; + private Button buttonCancel; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormComponent.cs b/FishFactory/FishFactoryView/FormComponent.cs new file mode 100644 index 0000000..2159c41 --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponent.cs @@ -0,0 +1,89 @@ +using FishFactoryContracts.BindingModels; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; + +namespace FishFactoryView +{ + public partial class FormComponent : Form + { + private readonly ILogger _logger; + private readonly IComponentLogic _logic; + private int? _id; + public int Id { set { _id = value; } } + public FormComponent(ILogger logger, IComponentLogic logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + } + private void FormComponent_Load(object sender, EventArgs e) + { + if (_id.HasValue) + { + try + { + _logger.LogInformation("Получение компонента"); + var view = _logic.ReadElement(new ComponentSearchModel { Id = _id.Value }); + if (view != null) + { + textBoxName.Text = view.ComponentName; + textBoxCost.Text = view.Cost.ToString(); + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка получения компонента"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + private void ButtonSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(textBoxName.Text)) + { + MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + _logger.LogInformation("Сохранение компонента"); + try + { + var model = new ComponentBindingModel + { + Id = _id ?? 0, + ComponentName = textBoxName.Text, + Cost = Convert.ToDouble(textBoxCost.Text) + }; + var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model); + if (!operationResult) + { + throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); + } + MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information); + DialogResult = DialogResult.OK; + Close(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка сохранения компонента"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void ButtonCancel_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + + } +} diff --git a/FishFactory/FishFactoryView/FormComponent.resx b/FishFactory/FishFactoryView/FormComponent.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponent.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormComponents.Designer.cs b/FishFactory/FishFactoryView/FormComponents.Designer.cs new file mode 100644 index 0000000..cf35fe8 --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponents.Designer.cs @@ -0,0 +1,114 @@ +namespace FishFactoryView +{ + partial class FormComponents + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + dataGridView = new DataGridView(); + ButtonAdd = new Button(); + ButtonUpd = new Button(); + ButtonDel = new Button(); + ButtonRef = new Button(); + ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); + SuspendLayout(); + // + // dataGridView + // + dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridView.Location = new Point(0, 0); + dataGridView.Name = "dataGridView"; + dataGridView.RowHeadersWidth = 51; + dataGridView.RowTemplate.Height = 29; + dataGridView.Size = new Size(615, 450); + dataGridView.TabIndex = 0; + // + // ButtonAdd + // + ButtonAdd.Location = new Point(658, 24); + ButtonAdd.Name = "ButtonAdd"; + ButtonAdd.Size = new Size(110, 45); + ButtonAdd.TabIndex = 1; + ButtonAdd.Text = "Добавить"; + ButtonAdd.UseVisualStyleBackColor = true; + ButtonAdd.Click += ButtonAdd_Click; + // + // ButtonUpd + // + ButtonUpd.Location = new Point(658, 89); + ButtonUpd.Name = "ButtonUpd"; + ButtonUpd.Size = new Size(110, 45); + ButtonUpd.TabIndex = 2; + ButtonUpd.Text = "Изменить"; + ButtonUpd.UseVisualStyleBackColor = true; + ButtonUpd.Click += ButtonUpd_Click; + // + // ButtonDel + // + ButtonDel.Location = new Point(658, 158); + ButtonDel.Name = "ButtonDel"; + ButtonDel.Size = new Size(110, 45); + ButtonDel.TabIndex = 3; + ButtonDel.Text = "Удалить"; + ButtonDel.UseVisualStyleBackColor = true; + ButtonDel.Click += ButtonDel_Click; + // + // ButtonRef + // + ButtonRef.Location = new Point(658, 229); + ButtonRef.Name = "ButtonRef"; + ButtonRef.Size = new Size(110, 45); + ButtonRef.TabIndex = 4; + ButtonRef.Text = "Обновить"; + ButtonRef.UseVisualStyleBackColor = true; + ButtonRef.Click += ButtonRef_Click; + // + // FormComponents + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Controls.Add(ButtonRef); + Controls.Add(ButtonDel); + Controls.Add(ButtonUpd); + Controls.Add(ButtonAdd); + Controls.Add(dataGridView); + Name = "FormComponents"; + Text = "Компоненты"; + Load += FormComponents_Load; + ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); + ResumeLayout(false); + } + + #endregion + + private DataGridView dataGridView; + private Button ButtonAdd; + private Button ButtonUpd; + private Button ButtonDel; + private Button ButtonRef; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormComponents.cs b/FishFactory/FishFactoryView/FormComponents.cs new file mode 100644 index 0000000..4089fa0 --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponents.cs @@ -0,0 +1,116 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class FormComponents : Form + { + private readonly ILogger _logger; + private readonly IComponentLogic _logic; + public FormComponents(ILogger logger, IComponentLogic + logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + } + private void FormComponents_Load(object sender, EventArgs e) + { + LoadData(); + } + private void LoadData() + { + try + { + var list = _logic.ReadList(null); + if (list != null) + { + dataGridView.DataSource = list; + dataGridView.Columns["Id"].Visible = false; + dataGridView.Columns["ComponentName"].AutoSizeMode = + DataGridViewAutoSizeColumnMode.Fill; + } + _logger.LogInformation("Загрузка компонентов"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки компонентов"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void ButtonAdd_Click(object sender, EventArgs e) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormComponent)); + if (service is FormComponent form) + { + if (form.ShowDialog() == DialogResult.OK) + { + LoadData(); + } + } + } + private void ButtonUpd_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormComponent)); + if (service is FormComponent form) + { + form.Id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + if (form.ShowDialog() == DialogResult.OK) + { + LoadData(); + } + } + } + } + private void ButtonDel_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + if (MessageBox.Show("Удалить запись?", "Вопрос", + MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + { + int id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + _logger.LogInformation("Удаление компонента"); + try + { + if (!_logic.Delete(new ComponentBindingModel + { + Id = id + })) + { + throw new Exception("Ошибка при удалении. Дополнительная информация в логах."); + } + LoadData(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка удаления компонента"); + MessageBox.Show(ex.Message, "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + } + private void ButtonRef_Click(object sender, EventArgs e) + { + LoadData(); + } + } +} diff --git a/FishFactory/FishFactoryView/FormComponents.resx b/FishFactory/FishFactoryView/FormComponents.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/FishFactory/FishFactoryView/FormComponents.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCreateOrder.Designer.cs b/FishFactory/FishFactoryView/FormCreateOrder.Designer.cs new file mode 100644 index 0000000..abd67bf --- /dev/null +++ b/FishFactory/FishFactoryView/FormCreateOrder.Designer.cs @@ -0,0 +1,143 @@ +namespace FishFactoryView +{ + partial class FormCreateOrder + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + label1 = new Label(); + label2 = new Label(); + label3 = new Label(); + comboBoxCanned = new ComboBox(); + textBoxCount = new TextBox(); + textBoxSum = new TextBox(); + ButtonCancel = new Button(); + ButtonSave = new Button(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(27, 22); + label1.Name = "label1"; + label1.Size = new Size(71, 20); + label1.TabIndex = 0; + label1.Text = "Изделие:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(27, 71); + label2.Name = "label2"; + label2.Size = new Size(93, 20); + label2.TabIndex = 1; + label2.Text = "Количество:"; + // + // label3 + // + label3.AutoSize = true; + label3.Location = new Point(27, 122); + label3.Name = "label3"; + label3.Size = new Size(58, 20); + label3.TabIndex = 2; + label3.Text = "Сумма:"; + // + // comboBoxCanned + // + comboBoxCanned.FormattingEnabled = true; + comboBoxCanned.Location = new Point(135, 19); + comboBoxCanned.Name = "comboBoxCanned"; + comboBoxCanned.Size = new Size(386, 28); + comboBoxCanned.TabIndex = 3; + comboBoxCanned.SelectedIndexChanged += ComboBoxCanned_SelectedIndexChanged; + // + // textBoxCount + // + textBoxCount.Location = new Point(135, 68); + textBoxCount.Name = "textBoxCount"; + textBoxCount.Size = new Size(386, 27); + textBoxCount.TabIndex = 4; + textBoxCount.TextChanged += TextBoxCount_TextChanged; + // + // textBoxSum + // + textBoxSum.Location = new Point(135, 119); + textBoxSum.Name = "textBoxSum"; + textBoxSum.Size = new Size(386, 27); + textBoxSum.TabIndex = 5; + // + // ButtonCancel + // + ButtonCancel.Location = new Point(427, 169); + ButtonCancel.Name = "ButtonCancel"; + ButtonCancel.Size = new Size(94, 29); + ButtonCancel.TabIndex = 6; + ButtonCancel.Text = "Отмена"; + ButtonCancel.UseVisualStyleBackColor = true; + ButtonCancel.Click += ButtonCancel_Click; + // + // ButtonSave + // + ButtonSave.Location = new Point(314, 169); + ButtonSave.Name = "ButtonSave"; + ButtonSave.Size = new Size(94, 29); + ButtonSave.TabIndex = 7; + ButtonSave.Text = "Сохранить"; + ButtonSave.UseVisualStyleBackColor = true; + ButtonSave.Click += ButtonSave_Click; + // + // FormCreateOrder + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(557, 210); + Controls.Add(ButtonSave); + Controls.Add(ButtonCancel); + Controls.Add(textBoxSum); + Controls.Add(textBoxCount); + Controls.Add(comboBoxCanned); + Controls.Add(label3); + Controls.Add(label2); + Controls.Add(label1); + Name = "FormCreateOrder"; + Text = "Заказ"; + Load += FormCreateOrder_Load; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label2; + private Label label3; + private ComboBox comboBoxCanned; + private TextBox textBoxCount; + private TextBox textBoxSum; + private Button ButtonCancel; + private Button ButtonSave; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/FormCreateOrder.cs b/FishFactory/FishFactoryView/FormCreateOrder.cs new file mode 100644 index 0000000..727e2a2 --- /dev/null +++ b/FishFactory/FishFactoryView/FormCreateOrder.cs @@ -0,0 +1,132 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.SearchModels; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class FormCreateOrder : Form + { + private readonly ILogger _logger; + private readonly ICannedLogic _logicC; + private readonly IOrderLogic _logicO; + public FormCreateOrder(ILogger logger, ICannedLogic + logicC, IOrderLogic logicO) + { + InitializeComponent(); + _logger = logger; + _logicC = logicC; + _logicO = logicO; + } + private void FormCreateOrder_Load(object sender, EventArgs e) + { + _logger.LogInformation("Загрузка консерв для заказа"); + try + { + var list = _logicC.ReadList(null); + if (list != null) + { + comboBoxCanned.DisplayMember = "CannedName"; + comboBoxCanned.ValueMember = "Id"; + comboBoxCanned.DataSource = list; + comboBoxCanned.SelectedItem = null; + } + _logger.LogInformation("Консерва загружено"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки консервы"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void CalcSum() + { + if (comboBoxCanned.SelectedValue != null && + !string.IsNullOrEmpty(textBoxCount.Text)) + { + try + { + int id = Convert.ToInt32(comboBoxCanned.SelectedValue); + var product = _logicC.ReadElement(new CannedSearchModel + { + Id + = id + }); + int count = Convert.ToInt32(textBoxCount.Text); + textBoxSum.Text = Math.Round(count * (product?.Price ?? 0), + 2).ToString(); + _logger.LogInformation("Расчет суммы заказа"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка расчета суммы заказа"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + } + private void TextBoxCount_TextChanged(object sender, EventArgs e) + { + CalcSum(); + } + private void ComboBoxCanned_SelectedIndexChanged(object sender, + EventArgs e) + { + CalcSum(); + } + private void ButtonSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(textBoxCount.Text)) + { + MessageBox.Show("Заполните поле Количество", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + if (comboBoxCanned.SelectedValue == null) + { + MessageBox.Show("Выберите консервы", "Ошибка", + MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + _logger.LogInformation("Создание заказа"); + try + { + var operationResult = _logicO.CreateOrder(new OrderBindingModel + { + CannedId = Convert.ToInt32(comboBoxCanned.SelectedValue), + Count = Convert.ToInt32(textBoxCount.Text), + Sum = Convert.ToDouble(textBoxSum.Text) + }); + if (!operationResult) + { + throw new Exception("Ошибка при создании заказа. Дополнительная информация в логах."); + } + MessageBox.Show("Сохранение прошло успешно", "Сообщение", + MessageBoxButtons.OK, MessageBoxIcon.Information); + DialogResult = DialogResult.OK; + Close(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка создания заказа"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + private void ButtonCancel_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.Cancel; + Close(); + } + } +} diff --git a/FishFactory/FishFactoryView/FormCreateOrder.resx b/FishFactory/FishFactoryView/FormCreateOrder.resx new file mode 100644 index 0000000..a395bff --- /dev/null +++ b/FishFactory/FishFactoryView/FormCreateOrder.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/MainForm.Designer.cs b/FishFactory/FishFactoryView/MainForm.Designer.cs new file mode 100644 index 0000000..09e9e2b --- /dev/null +++ b/FishFactory/FishFactoryView/MainForm.Designer.cs @@ -0,0 +1,171 @@ +namespace FishFactoryView +{ + partial class MainForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + dataGridView = new DataGridView(); + button1 = new Button(); + button2 = new Button(); + button3 = new Button(); + button4 = new Button(); + button5 = new Button(); + menuStrip1 = new MenuStrip(); + toolStripMenuItem1 = new ToolStripMenuItem(); + компонентыToolStripMenuItem = new ToolStripMenuItem(); + консервыToolStripMenuItem = new ToolStripMenuItem(); + ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); + menuStrip1.SuspendLayout(); + SuspendLayout(); + // + // dataGridView + // + dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridView.Location = new Point(-1, 30); + dataGridView.Name = "dataGridView"; + dataGridView.RowHeadersWidth = 51; + dataGridView.RowTemplate.Height = 29; + dataGridView.Size = new Size(871, 457); + dataGridView.TabIndex = 1; + // + // button1 + // + button1.Location = new Point(885, 55); + button1.Name = "button1"; + button1.Size = new Size(179, 29); + button1.TabIndex = 2; + button1.Text = "Создать заказ"; + button1.UseVisualStyleBackColor = true; + button1.Click += ButtonCreateOrder_Click; + // + // button2 + // + button2.Location = new Point(885, 117); + button2.Name = "button2"; + button2.Size = new Size(179, 29); + button2.TabIndex = 3; + button2.Text = "Отдать на выполнение"; + button2.UseVisualStyleBackColor = true; + button2.Click += ButtonTakeOrderInWork_Click; + // + // button3 + // + button3.Location = new Point(885, 185); + button3.Name = "button3"; + button3.Size = new Size(179, 29); + button3.TabIndex = 4; + button3.Text = "Заказ готов"; + button3.UseVisualStyleBackColor = true; + button3.Click += ButtonOrderReady_Click; + // + // button4 + // + button4.Location = new Point(885, 254); + button4.Name = "button4"; + button4.Size = new Size(179, 29); + button4.TabIndex = 5; + button4.Text = "Заказ выдан"; + button4.UseVisualStyleBackColor = true; + button4.Click += ButtonIssuedOrder_Click; + // + // button5 + // + button5.Location = new Point(885, 321); + button5.Name = "button5"; + button5.Size = new Size(179, 29); + button5.TabIndex = 6; + button5.Text = "Обновить список"; + button5.UseVisualStyleBackColor = true; + button5.Click += ButtonRef_Click; + // + // menuStrip1 + // + menuStrip1.ImageScalingSize = new Size(20, 20); + menuStrip1.Items.AddRange(new ToolStripItem[] { toolStripMenuItem1 }); + menuStrip1.Location = new Point(0, 0); + menuStrip1.Name = "menuStrip1"; + menuStrip1.Size = new Size(1076, 28); + menuStrip1.TabIndex = 7; + menuStrip1.Text = "menuStrip1"; + // + // toolStripMenuItem1 + // + toolStripMenuItem1.DropDownItems.AddRange(new ToolStripItem[] { компонентыToolStripMenuItem, консервыToolStripMenuItem }); + toolStripMenuItem1.Name = "toolStripMenuItem1"; + toolStripMenuItem1.Size = new Size(117, 24); + toolStripMenuItem1.Text = "Справочники"; + // + // компонентыToolStripMenuItem + // + компонентыToolStripMenuItem.Name = "компонентыToolStripMenuItem"; + компонентыToolStripMenuItem.Size = new Size(224, 26); + компонентыToolStripMenuItem.Text = "Компоненты"; + компонентыToolStripMenuItem.Click += ComponentToolStripMenuItem_Click; + // + // консервыToolStripMenuItem + // + консервыToolStripMenuItem.Name = "консервыToolStripMenuItem"; + консервыToolStripMenuItem.Size = new Size(224, 26); + консервыToolStripMenuItem.Text = "Консервы"; + консервыToolStripMenuItem.Click += CannedToolStripMenuItem_Click; + // + // MainForm + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(1076, 487); + Controls.Add(button5); + Controls.Add(button4); + Controls.Add(button3); + Controls.Add(button2); + Controls.Add(button1); + Controls.Add(dataGridView); + Controls.Add(menuStrip1); + MainMenuStrip = menuStrip1; + Name = "MainForm"; + Text = "Рыбный завод"; + Load += FormMain_Load; + ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); + menuStrip1.ResumeLayout(false); + menuStrip1.PerformLayout(); + ResumeLayout(false); + PerformLayout(); + } + + #endregion + private DataGridView dataGridView; + private Button button1; + private Button button2; + private Button button3; + private Button button4; + private Button button5; + private MenuStrip menuStrip1; + private ToolStripMenuItem toolStripMenuItem1; + private ToolStripMenuItem компонентыToolStripMenuItem; + private ToolStripMenuItem консервыToolStripMenuItem; + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/MainForm.cs b/FishFactory/FishFactoryView/MainForm.cs new file mode 100644 index 0000000..aeee666 --- /dev/null +++ b/FishFactory/FishFactoryView/MainForm.cs @@ -0,0 +1,162 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryDataModels.Enums; +using Microsoft.Extensions.Logging; +using System.Windows.Forms; + +namespace FishFactoryView +{ + public partial class MainForm : Form + { + private readonly ILogger _logger; + private readonly IOrderLogic _orderLogic; + public MainForm(ILogger logger, IOrderLogic orderLogic) + { + InitializeComponent(); + _logger = logger; + _orderLogic = orderLogic; + } + private void FormMain_Load(object sender, EventArgs e) + { + LoadData(); + } + private void LoadData() + { + _logger.LogInformation(" "); + try + { + var list = _orderLogic.ReadList(null); + if (list != null) + { + dataGridView.DataSource = list; + dataGridView.Columns["CannedId"].Visible = false; + dataGridView.Columns["CannedName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + } + _logger.LogInformation(" "); + } + catch (Exception ex) + { + _logger.LogError(ex, " "); + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + private void ComponentToolStripMenuItem_Click(object sender, EventArgs + e) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormComponents)); + if (service is FormComponents form) + { + form.ShowDialog(); + } + } + private void CannedToolStripMenuItem_Click(object sender, EventArgs e) + { + var service = Program.ServiceProvider?.GetService(typeof(FormCanneds)); + if (service is FormCanneds form) + { + form.ShowDialog(); + } + } + private void ButtonCreateOrder_Click(object sender, EventArgs e) + { + var service = + Program.ServiceProvider?.GetService(typeof(FormCreateOrder)); + if (service is FormCreateOrder form) + { + form.ShowDialog(); + LoadData(); + } + } + private void ButtonTakeOrderInWork_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + int id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + _logger.LogInformation(" {id}. ' '", id); + try + { + var operationResult = _orderLogic.TakeOrderInWork(CreateBindingModel(id)); + if (!operationResult) + { + throw new Exception(" . ."); + } + LoadData(); + } + catch (Exception ex) + { + _logger.LogError(ex, " "); + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + } + private void ButtonOrderReady_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + int id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + _logger.LogInformation(" {id}. ''", + id); + try + { + var operationResult = _orderLogic.FinishOrder(CreateBindingModel(id)); + if (!operationResult) + { + throw new Exception(" . ."); + } + LoadData(); + } + catch (Exception ex) + { + _logger.LogError(ex, " "); + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, +MessageBoxIcon.Error); + } + } + } + private void ButtonIssuedOrder_Click(object sender, EventArgs e) + { + if (dataGridView.SelectedRows.Count == 1) + { + int id = + Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); + _logger.LogInformation(" {id}. ''", id); + try + { + var operationResult = _orderLogic.DeliveryOrder(CreateBindingModel(id)); + if (!operationResult) + { + throw new Exception(" . ."); + } + _logger.LogInformation(" {id} ", id); + LoadData(); + } + catch (Exception ex) + { + _logger.LogError(ex, " "); + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + } + private void ButtonRef_Click(object sender, EventArgs e) + { + LoadData(); + } + private OrderBindingModel CreateBindingModel(int id, bool isDone = false) + { + return new OrderBindingModel + { + Id = id, + CannedId = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["CannedId"].Value), + Status = Enum.Parse(dataGridView.SelectedRows[0].Cells["Status"].Value.ToString()), + Count = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Count"].Value), + Sum = double.Parse(dataGridView.SelectedRows[0].Cells["Sum"].Value.ToString()), + DateCreate = DateTime.Parse(dataGridView.SelectedRows[0].Cells["DateCreate"].Value.ToString()), + }; + } + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/MainForm.resx b/FishFactory/FishFactoryView/MainForm.resx new file mode 100644 index 0000000..5203d24 --- /dev/null +++ b/FishFactory/FishFactoryView/MainForm.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/FishFactory/FishFactoryView/Program.cs b/FishFactory/FishFactoryView/Program.cs new file mode 100644 index 0000000..7cca7c6 --- /dev/null +++ b/FishFactory/FishFactoryView/Program.cs @@ -0,0 +1,52 @@ +using FishFactoryBusinessLogic.BusinessLogics; +using FishFactoryContracts.BusinessLogicsContracts; +using FishFactoryContracts.StoragesContracts; +using FishFactoryListImplement.Implements; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using NLog.Extensions.Logging; +using System; + +namespace FishFactoryView +{ + internal static class Program + { + private static ServiceProvider? _serviceProvider; + public static ServiceProvider? ServiceProvider => _serviceProvider; + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + var services = new ServiceCollection(); + ConfigureServices(services); + _serviceProvider = services.BuildServiceProvider(); + Application.Run(_serviceProvider.GetRequiredService()); + } + private static void ConfigureServices(ServiceCollection services) + { + services.AddLogging(option => + { + option.SetMinimumLevel(LogLevel.Information); + option.AddNLog("nlog.config"); + }); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + } + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryView/nlog.config b/FishFactory/FishFactoryView/nlog.config new file mode 100644 index 0000000..85797a7 --- /dev/null +++ b/FishFactory/FishFactoryView/nlog.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file