From 860812d1e934f638ffa42d0dd4dfd5a19c0ebeba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B8=D1=88=D0=B5=D1=80=20=D0=91=D1=83=D1=81?= =?UTF-8?q?=D1=82=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Sat, 8 Apr 2023 21:26:53 +0400 Subject: [PATCH] SecondWork --- FishFactory/FishFactory.sln | 56 +++++++----- .../DataFileSingleton.cs | 58 ++++++++++++ .../FishFactoryFileImplement.csproj | 14 +++ .../Implements/CannedStorage.cs | 80 ++++++++++++++++ .../Implements/IngredientStorage.cs | 74 +++++++++++++++ .../Implements/OrderStorage.cs | 91 +++++++++++++++++++ .../FishFactoryFileImplement/Models/Canned.cs | 86 ++++++++++++++++++ .../Models/Ingredient.cs | 59 ++++++++++++ .../FishFactoryFileImplement/Models/Order.cs | 85 +++++++++++++++++ .../FishFactoryView/FishFactoryView.csproj | 1 + FishFactory/FishFactoryView/Program.cs | 2 +- 11 files changed, 580 insertions(+), 26 deletions(-) create mode 100644 FishFactory/FishFactoryFileImplement/DataFileSingleton.cs create mode 100644 FishFactory/FishFactoryFileImplement/FishFactoryFileImplement.csproj create mode 100644 FishFactory/FishFactoryFileImplement/Implements/CannedStorage.cs create mode 100644 FishFactory/FishFactoryFileImplement/Implements/IngredientStorage.cs create mode 100644 FishFactory/FishFactoryFileImplement/Implements/OrderStorage.cs create mode 100644 FishFactory/FishFactoryFileImplement/Models/Canned.cs create mode 100644 FishFactory/FishFactoryFileImplement/Models/Ingredient.cs create mode 100644 FishFactory/FishFactoryFileImplement/Models/Order.cs diff --git a/FishFactory/FishFactory.sln b/FishFactory/FishFactory.sln index aeb1db6..0a6afb7 100644 --- a/FishFactory/FishFactory.sln +++ b/FishFactory/FishFactory.sln @@ -3,15 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32825.248 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryDataModels", "FishFactoryDataModels\FishFactoryDataModels.csproj", "{D3365297-DF47-4830-BF3C-A24EE3E62B15}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryDataModels", "FishFactoryDataModels\FishFactoryDataModels.csproj", "{4FAEE923-3CA2-4AFE-9C2C-050BAEE36A29}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryView", "FishFactoryView\FishFactoryView.csproj", "{2304F79F-E763-44E3-8CF6-50CFC3BDC288}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryContracts", "FishFactoryContracts\FishFactoryContracts.csproj", "{3B62D774-0DEB-450B-B299-BF6F4A7087BD}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryContracts", "FishFactoryContracts\FishFactoryContracts.csproj", "{78DE3D5B-DA83-4266-B91F-5601C5603450}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryBusinessLogic", "FishFactoryBusinessLogic\FishFactoryBusinessLogic.csproj", "{4D20FEFE-07A7-40F9-8E2E-A94811F92601}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryBusinessLogic", "FishFactoryBusinessLogic\FishFactoryBusinessLogic.csproj", "{AC755273-7FEE-42B5-9BA1-5D17FF559C37}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryListImplement", "FishFactoryListImplement\FishFactoryListImplement.csproj", "{ED796052-9415-4436-837E-C82D78B10BEB}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryListImplement", "FishFactoryListImplement\FishFactoryListImplement.csproj", "{923C2993-D4F1-4480-B31C-B80F16575603}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryFileImplement", "FishFactoryFileImplement\FishFactoryFileImplement.csproj", "{E898CFA7-2232-4B1C-B36A-9FBC6D841DF4}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishFactoryView", "FishFactoryView\FishFactoryView.csproj", "{F5DB1B1C-105F-41D8-9416-6334CD96E838}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -19,26 +21,30 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D3365297-DF47-4830-BF3C-A24EE3E62B15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D3365297-DF47-4830-BF3C-A24EE3E62B15}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3365297-DF47-4830-BF3C-A24EE3E62B15}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D3365297-DF47-4830-BF3C-A24EE3E62B15}.Release|Any CPU.Build.0 = Release|Any CPU - {2304F79F-E763-44E3-8CF6-50CFC3BDC288}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2304F79F-E763-44E3-8CF6-50CFC3BDC288}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2304F79F-E763-44E3-8CF6-50CFC3BDC288}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2304F79F-E763-44E3-8CF6-50CFC3BDC288}.Release|Any CPU.Build.0 = Release|Any CPU - {78DE3D5B-DA83-4266-B91F-5601C5603450}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {78DE3D5B-DA83-4266-B91F-5601C5603450}.Debug|Any CPU.Build.0 = Debug|Any CPU - {78DE3D5B-DA83-4266-B91F-5601C5603450}.Release|Any CPU.ActiveCfg = Release|Any CPU - {78DE3D5B-DA83-4266-B91F-5601C5603450}.Release|Any CPU.Build.0 = Release|Any CPU - {AC755273-7FEE-42B5-9BA1-5D17FF559C37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AC755273-7FEE-42B5-9BA1-5D17FF559C37}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AC755273-7FEE-42B5-9BA1-5D17FF559C37}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AC755273-7FEE-42B5-9BA1-5D17FF559C37}.Release|Any CPU.Build.0 = Release|Any CPU - {923C2993-D4F1-4480-B31C-B80F16575603}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {923C2993-D4F1-4480-B31C-B80F16575603}.Debug|Any CPU.Build.0 = Debug|Any CPU - {923C2993-D4F1-4480-B31C-B80F16575603}.Release|Any CPU.ActiveCfg = Release|Any CPU - {923C2993-D4F1-4480-B31C-B80F16575603}.Release|Any CPU.Build.0 = Release|Any CPU + {4FAEE923-3CA2-4AFE-9C2C-050BAEE36A29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4FAEE923-3CA2-4AFE-9C2C-050BAEE36A29}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4FAEE923-3CA2-4AFE-9C2C-050BAEE36A29}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4FAEE923-3CA2-4AFE-9C2C-050BAEE36A29}.Release|Any CPU.Build.0 = Release|Any CPU + {3B62D774-0DEB-450B-B299-BF6F4A7087BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3B62D774-0DEB-450B-B299-BF6F4A7087BD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3B62D774-0DEB-450B-B299-BF6F4A7087BD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3B62D774-0DEB-450B-B299-BF6F4A7087BD}.Release|Any CPU.Build.0 = Release|Any CPU + {4D20FEFE-07A7-40F9-8E2E-A94811F92601}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4D20FEFE-07A7-40F9-8E2E-A94811F92601}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4D20FEFE-07A7-40F9-8E2E-A94811F92601}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4D20FEFE-07A7-40F9-8E2E-A94811F92601}.Release|Any CPU.Build.0 = Release|Any CPU + {ED796052-9415-4436-837E-C82D78B10BEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED796052-9415-4436-837E-C82D78B10BEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED796052-9415-4436-837E-C82D78B10BEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED796052-9415-4436-837E-C82D78B10BEB}.Release|Any CPU.Build.0 = Release|Any CPU + {E898CFA7-2232-4B1C-B36A-9FBC6D841DF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E898CFA7-2232-4B1C-B36A-9FBC6D841DF4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E898CFA7-2232-4B1C-B36A-9FBC6D841DF4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E898CFA7-2232-4B1C-B36A-9FBC6D841DF4}.Release|Any CPU.Build.0 = Release|Any CPU + {F5DB1B1C-105F-41D8-9416-6334CD96E838}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F5DB1B1C-105F-41D8-9416-6334CD96E838}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F5DB1B1C-105F-41D8-9416-6334CD96E838}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F5DB1B1C-105F-41D8-9416-6334CD96E838}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/FishFactory/FishFactoryFileImplement/DataFileSingleton.cs b/FishFactory/FishFactoryFileImplement/DataFileSingleton.cs new file mode 100644 index 0000000..38fe260 --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/DataFileSingleton.cs @@ -0,0 +1,58 @@ +using FishFactoryFileImplement.Models; +using System.Xml.Linq; + +namespace FishFactoryFileImplement +{ + public class DataFileSingleton + { + private static DataFileSingleton? instance; + private readonly string IngredientFileName = "Ingredient.xml"; + private readonly string OrderFileName = "Order.xml"; + private readonly string CannedFileName = "Canned.xml"; + public List Ingredients { get; private set; } + public List Orders { get; private set; } + public List ListCanned { get; private set; } + public static DataFileSingleton GetInstance() + { + if (instance == null) + { + instance = new DataFileSingleton(); + } + return instance; + } + public void SaveIngredients() => SaveData(Ingredients, IngredientFileName, + "Ingredients", x => x.GetXElement); + + public void SaveListCanned() => SaveData(ListCanned, CannedFileName, + "ListCanned", x => x.GetXElement); + + public void SaveOrders() => SaveData(Orders, OrderFileName, "Orders", x => x.GetXElement); + + private DataFileSingleton() + { + Ingredients = LoadData(IngredientFileName, "Ingredient", x => Ingredient.Create(x)!)!; + ListCanned = LoadData(CannedFileName, "Canned", x => Canned.Create(x)!)!; + Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!; + } + + private static List? LoadData(string filename, string xmlNodeName, + Func selectFunction) + { + if (File.Exists(filename)) + { + return + XDocument.Load(filename)?.Root?.Elements(xmlNodeName)?.Select(selectFunction)?.ToList(); + } + return new List(); + } + + private static void SaveData(List data, string filename, string + xmlNodeName, Func selectFunction) + { + if (data != null) + { + new XDocument(new XElement(xmlNodeName, data.Select(selectFunction).ToArray())).Save(filename); + } + } + } +} \ No newline at end of file diff --git a/FishFactory/FishFactoryFileImplement/FishFactoryFileImplement.csproj b/FishFactory/FishFactoryFileImplement/FishFactoryFileImplement.csproj new file mode 100644 index 0000000..b2c107f --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/FishFactoryFileImplement.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + diff --git a/FishFactory/FishFactoryFileImplement/Implements/CannedStorage.cs b/FishFactory/FishFactoryFileImplement/Implements/CannedStorage.cs new file mode 100644 index 0000000..5ec2cb5 --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Implements/CannedStorage.cs @@ -0,0 +1,80 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryFileImplement.Models; + +namespace FishFactoryFileImplement.Implements +{ + public class CannedStorage : ICannedStorage + { + private readonly DataFileSingleton source; + public CannedStorage() + { + source = DataFileSingleton.GetInstance(); + } + + public List GetFullList() + { + return source.ListCanned.Select(x => x.GetViewModel).ToList(); + } + + public List GetFilteredList(CannedSearchModel model) + { + if (string.IsNullOrEmpty(model.CannedName)) + { + return new(); + } + return source.ListCanned.Where(x => + x.CannedName.Contains(model.CannedName)).Select(x => x.GetViewModel).ToList(); + } + + public CannedViewModel? GetElement(CannedSearchModel model) + { + if (string.IsNullOrEmpty(model.CannedName) && !model.Id.HasValue) + { + return null; + } + return source.ListCanned.FirstOrDefault(x => + (!string.IsNullOrEmpty(model.CannedName) && x.CannedName == + model.CannedName) || (model.Id.HasValue && x.Id == model.Id))?.GetViewModel; + } + + public CannedViewModel? Insert(CannedBindingModel model) + { + model.Id = source.ListCanned.Count > 0 ? source.ListCanned.Max(x => x.Id) + 1 : 1; + var newCanned = Canned.Create(model); + if (newCanned == null) + { + return null; + } + source.ListCanned.Add(newCanned); + source.SaveListCanned(); + return newCanned.GetViewModel; + } + + public CannedViewModel? Update(CannedBindingModel model) + { + var canned = source.ListCanned.FirstOrDefault(x => x.Id == model.Id); + if (canned == null) + { + return null; + } + canned.Update(model); + source.SaveListCanned(); + return canned.GetViewModel; + } + + public CannedViewModel? Delete(CannedBindingModel model) + { + var element = source.ListCanned.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.ListCanned.Remove(element); + source.SaveListCanned(); + return element.GetViewModel; + } + return null; + } + } +} diff --git a/FishFactory/FishFactoryFileImplement/Implements/IngredientStorage.cs b/FishFactory/FishFactoryFileImplement/Implements/IngredientStorage.cs new file mode 100644 index 0000000..fa36d85 --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Implements/IngredientStorage.cs @@ -0,0 +1,74 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryFileImplement.Models; + +namespace FishFactoryFileImplement.Implements +{ + public class IngredientStorage : IIngredientStorage + { + private readonly DataFileSingleton source; + public IngredientStorage() + { + source = DataFileSingleton.GetInstance(); + } + public List GetFullList() + { + return source.Ingredients.Select(x => x.GetViewModel).ToList(); + } + public List GetFilteredList(IngredientSearchModel model) + { + if (string.IsNullOrEmpty(model.IngredientName)) + { + return new(); + } + return source.Ingredients.Where(x => + x.IngredientName.Contains(model.IngredientName)).Select(x => x.GetViewModel).ToList(); + } + public IngredientViewModel? GetElement(IngredientSearchModel model) + { + if (string.IsNullOrEmpty(model.IngredientName) && !model.Id.HasValue) + { + return null; + } + return source.Ingredients.FirstOrDefault(x => + (!string.IsNullOrEmpty(model.IngredientName) && x.IngredientName == + model.IngredientName) || (model.Id.HasValue && x.Id == model.Id))?.GetViewModel; + } + public IngredientViewModel? Insert(IngredientBindingModel model) + { + model.Id = source.Ingredients.Count > 0 ? source.Ingredients.Max(x => x.Id) + 1 : 1; + var newIngredient = Ingredient.Create(model); + if (newIngredient == null) + { + return null; + } + source.Ingredients.Add(newIngredient); + source.SaveIngredients(); + return newIngredient.GetViewModel; + } + public IngredientViewModel? Update(IngredientBindingModel model) + { + var ingredient = source.Ingredients.FirstOrDefault(x => x.Id == model.Id); + if (ingredient == null) + { + return null; + } + ingredient.Update(model); + source.SaveIngredients(); + return ingredient.GetViewModel; + } + public IngredientViewModel? Delete(IngredientBindingModel model) + { + var element = source.Ingredients.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.Ingredients.Remove(element); + source.SaveIngredients(); + return element.GetViewModel; + } + return null; + } + } +} diff --git a/FishFactory/FishFactoryFileImplement/Implements/OrderStorage.cs b/FishFactory/FishFactoryFileImplement/Implements/OrderStorage.cs new file mode 100644 index 0000000..418c8af --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Implements/OrderStorage.cs @@ -0,0 +1,91 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.SearchModels; +using FishFactoryContracts.StoragesContracts; +using FishFactoryContracts.ViewModels; +using FishFactoryFileImplement.Models; + +namespace FishFactoryFileImplement.Implements +{ + public class OrderStorage :IOrderStorage + { + private readonly DataFileSingleton source; + public OrderStorage() + { + source = DataFileSingleton.GetInstance(); + } + + public List GetFullList() + { + return source.Orders.Select(x => GetViewModel(x)).ToList(); + } + + public List GetFilteredList(OrderSearchModel model) + { + if (!model.Id.HasValue) + { + return new(); + } + return source.Orders.Where(x => x.Id.Equals(model.Id)).Select(x => GetViewModel(x)).ToList(); + } + + public OrderViewModel? GetElement(OrderSearchModel model) + { + if (!model.Id.HasValue) + { + return null; + } + + return source.Orders.FirstOrDefault(x => + (model.Id.HasValue && x.Id == model.Id))?.GetViewModel; + } + private OrderViewModel GetViewModel(Order order) + { + var viewModel = order.GetViewModel; + foreach (var canned in source.ListCanned) + { + if (canned.Id == order.CannedId) + { + viewModel.CannedName = canned.CannedName; + break; + } + } + return viewModel; + } + public OrderViewModel? Insert(OrderBindingModel model) + { + model.Id = source.Orders.Count > 0 ? source.Orders.Max(x => x.Id) + 1 : 1; + var newOrder = Order.Create(model); + if (newOrder == null) + { + return null; + } + source.Orders.Add(newOrder); + source.SaveOrders(); + return GetViewModel(newOrder); + } + + public OrderViewModel? Update(OrderBindingModel model) + { + var order = source.Orders.FirstOrDefault(x => x.Id == model.Id); + if (order == null) + { + return null; + } + order.Update(model); + source.SaveOrders(); + return GetViewModel(order); + } + + public OrderViewModel? Delete(OrderBindingModel model) + { + var element = source.Orders.FirstOrDefault(x => x.Id == model.Id); + if (element != null) + { + source.Orders.Remove(element); + source.SaveOrders(); + return GetViewModel(element); + } + return null; + } + } +} diff --git a/FishFactory/FishFactoryFileImplement/Models/Canned.cs b/FishFactory/FishFactoryFileImplement/Models/Canned.cs new file mode 100644 index 0000000..b64f97b --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Models/Canned.cs @@ -0,0 +1,86 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using System.Xml.Linq; + +namespace FishFactoryFileImplement.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 Ingredients { get; private set; } = new(); + private Dictionary? _productIngredients = null; + public Dictionary CannedIngredients + { + get + { + if(_productIngredients == null) + { + var source = DataFileSingleton.GetInstance(); + _productIngredients = Ingredients.ToDictionary(x => x.Key, y => ((source.Ingredients.FirstOrDefault(z => z.Id == y.Key) as IIngredientModel)!, y.Value)); + } + return _productIngredients; + } + } + + public static Canned? Create(CannedBindingModel model) + { + if (model == null) + { + return null; + } + return new Canned() + { + Id = model.Id, + CannedName = model.CannedName, + Price = model.Price, + Ingredients = model.CannedIngredients.ToDictionary(x => x.Key, x => x.Value.Item2) + }; + } + + public static Canned? Create(XElement element) + { + if(element == null) + { + return null; + } + return new Canned() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + CannedName = element.Element("CannedName")!.Value, + Price = Convert.ToDouble(element.Element("Price")!.Value), + Ingredients = element.Element("CannedIngredients")!.Elements("CannedIngredient").ToDictionary(x => + Convert.ToInt32(x.Element("Key")?.Value), x => Convert.ToInt32(x.Element("Value")?.Value)) + }; + } + + public void Update(CannedBindingModel model) + { + if(model == null) + { + return; + } + CannedName = model.CannedName; + Price = model.Price; + Ingredients = model.CannedIngredients.ToDictionary(x => x.Key, x => x.Value.Item2); + _productIngredients = null; + } + + public CannedViewModel GetViewModel => new() + { + Id = Id, + CannedName = CannedName, + Price = Price, + CannedIngredients = CannedIngredients, + }; + + public XElement GetXElement => new("Canned", + new XAttribute("Id", Id), + new XElement("CannedName", CannedName), + new XElement("Price", Price.ToString()), + new XElement("CannedIngredients", Ingredients.Select(x => new XElement("CannedIngredient", + new XElement("Key", x.Key), new XElement("Value", x.Value))).ToArray())); + } +} diff --git a/FishFactory/FishFactoryFileImplement/Models/Ingredient.cs b/FishFactory/FishFactoryFileImplement/Models/Ingredient.cs new file mode 100644 index 0000000..d02cdc6 --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Models/Ingredient.cs @@ -0,0 +1,59 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using System.Xml.Linq; + +namespace FishFactoryFileImplement.Models +{ + public class Ingredient : IIngredientModel + { + public int Id { get; private set; } + public string IngredientName { get; private set; } = string.Empty; + public double Cost { get; set; } + public static Ingredient? Create(IngredientBindingModel model) + { + if (model == null) + { + return null; + } + return new Ingredient() + { + Id = model.Id, + IngredientName = model.IngredientName, + Cost = model.Cost + }; + } + public static Ingredient? Create(XElement element) + { + if (element == null) + { + return null; + } + return new Ingredient() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + IngredientName = element.Element("IngredientName")!.Value, + Cost = Convert.ToDouble(element.Element("Cost")!.Value) + }; + } + public void Update(IngredientBindingModel model) + { + if (model == null) + { + return; + } + IngredientName = model.IngredientName; + Cost = model.Cost; + } + public IngredientViewModel GetViewModel => new() + { + Id = Id, + IngredientName = IngredientName, + Cost = Cost + }; + public XElement GetXElement => new("Ingredient", + new XAttribute("Id", Id), + new XElement("IngredientName", IngredientName), + new XElement("Cost", Cost.ToString())); + } +} diff --git a/FishFactory/FishFactoryFileImplement/Models/Order.cs b/FishFactory/FishFactoryFileImplement/Models/Order.cs new file mode 100644 index 0000000..5dbbb5e --- /dev/null +++ b/FishFactory/FishFactoryFileImplement/Models/Order.cs @@ -0,0 +1,85 @@ +using FishFactoryContracts.BindingModels; +using FishFactoryContracts.ViewModels; +using FishFactoryDataModels.Models; +using FishFactoryDataModels.Enums; +using System.Xml.Linq; + +namespace FishFactoryFileImplement.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; } = OrderStatus.Неизвестен; + public DateTime DateCreate { get; private set; } = DateTime.Now; + 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 static Order? Create(XElement element) + { + if (element == null) + { + return null; + } + return new Order() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + CannedId = Convert.ToInt32(element.Element("CannedId")!.Value), + Sum = Convert.ToDouble(element.Element("Sum")!.Value), + Count = Convert.ToInt32(element.Element("Count")!.Value), + Status = (OrderStatus)Enum.Parse(typeof(OrderStatus), element.Element("Status")!.Value), + DateCreate = Convert.ToDateTime(element.Element("DateCreate")!.Value), + DateImplement = string.IsNullOrEmpty(element.Element("DateImplement")!.Value) ? null : Convert.ToDateTime(element.Element("DateImplement")!.Value) + }; + } + + public void Update(OrderBindingModel? model) + { + if (model == null) + { + return; + } + Status = model.Status; + DateImplement = model.DateImplement; + } + + public OrderViewModel GetViewModel => new() + { + CannedId = CannedId, + Count = Count, + Sum = Sum, + DateCreate = DateCreate, + DateImplement = DateImplement, + Id = Id, + Status = Status, + }; + + public XElement GetXElement => new("Order", + new XAttribute("Id", Id), + new XElement("CannedId", CannedId), + new XElement("Count", Count.ToString()), + new XElement("Sum", Sum.ToString()), + new XElement("Status", Status.ToString()), + new XElement("DateCreate", DateCreate.ToString()), + new XElement("DateImplement", DateImplement.ToString())); + } +} diff --git a/FishFactory/FishFactoryView/FishFactoryView.csproj b/FishFactory/FishFactoryView/FishFactoryView.csproj index 0f507c5..70b52c5 100644 --- a/FishFactory/FishFactoryView/FishFactoryView.csproj +++ b/FishFactory/FishFactoryView/FishFactoryView.csproj @@ -16,6 +16,7 @@ + diff --git a/FishFactory/FishFactoryView/Program.cs b/FishFactory/FishFactoryView/Program.cs index 1356160..2a307f9 100644 --- a/FishFactory/FishFactoryView/Program.cs +++ b/FishFactory/FishFactoryView/Program.cs @@ -4,7 +4,7 @@ using NLog.Extensions.Logging; using FishFactoryBusinessLogic.BusinessLogics; using FishFactoryContracts.BusinessLogicsContracts; using FishFactoryContracts.StoragesContracts; -using FishFactoryListImplement.Implements; +using FishFactoryFileImplement.Implements; using FishFactoryView; namespace FishFactoryView