using IceCreamShopContracts.BindingModels; using IceCreamShopContracts.SearchModels; using IceCreamShopContracts.StoragesContracts; using IceCreamShopContracts.ViewModels; using IceCreamShopDataModels.Models; using IceCreamShopListImplement.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IceCreamShopListImplement.Implements { public class ShopStorage : IShopStorage { private readonly DataListSingleton _source; public ShopStorage() { _source = DataListSingleton.GetInstance(); } public List GetFullList() { var result = new List(); foreach (var shop in _source.Shops) { result.Add(shop.GetViewModel); } return result; } public List GetFilteredList(ShopSearchModel model) { var result = new List(); if (string.IsNullOrEmpty(model.Name)) { return result; } foreach (var shop in _source.Shops) { if (shop.ShopName.Contains(model.Name)) { result.Add(shop.GetViewModel); } } return result; } public ShopViewModel? GetElement(ShopSearchModel model) { if (string.IsNullOrEmpty(model.Name) && !model.Id.HasValue) { return null; } foreach (var shop in _source.Shops) { if ((!string.IsNullOrEmpty(model.Name) && shop.ShopName == model.Name) || (model.Id.HasValue && shop.Id == model.Id)) { return shop.GetViewModel; } } return null; } public ShopViewModel? Insert(ShopBindingModel model) { model.Id = 1; foreach (var shop in _source.Shops) { if (model.Id <= shop.Id) { model.Id = shop.Id + 1; } } var newShop = Shop.Create(model); if (newShop == null) { return null; } _source.Shops.Add(newShop); return newShop.GetViewModel; } public ShopViewModel? Update(ShopBindingModel model) { foreach (var shop in _source.Shops) { if (shop.Id == model.Id) { shop.Update(model); return shop.GetViewModel; } } return null; } public ShopViewModel? Delete(ShopBindingModel model) { for (int i = 0; i < _source.Shops.Count; ++i) { if (_source.Shops[i].Id == model.Id) { var element = _source.Shops[i]; _source.Shops.RemoveAt(i); return element.GetViewModel; } } return null; } public bool SupplyIceCream(ShopSearchModel model, IIceCreamModel iceCream, int count) { if (model == null) throw new ArgumentNullException(nameof(model)); if (iceCream == null) throw new ArgumentNullException(nameof(iceCream)); if (count <= 0) throw new ArgumentNullException("Количество должно быть положительным числом"); ShopViewModel curModel = GetElement(model); if(curModel == null) throw new ArgumentNullException(nameof(curModel)); if (curModel.ShopIceCreams.TryGetValue(iceCream.Id, out var pair)) { curModel.ShopIceCreams[iceCream.Id] = (pair.Item1, pair.Item2 + count); } else { curModel.ShopIceCreams.Add(iceCream.Id, (iceCream, count)); } Update(new() { Id = curModel.Id, ShopName = curModel.ShopName, DateOpen = curModel.DateOpen, Address = curModel.Address, ShopIceCreams = curModel.ShopIceCreams, }); return true; } } }