using ComputerShopContracts.BindingModels; using ComputerShopContracts.ViewModels; using ComputerShopDataModels.Enums; using ComputerShopDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ComputerShopDatabaseImplement.Models { internal class Supply : ISupplyModel { public int Id { get; set; } [Required] public SupplyStatus Status { get; private set; } = SupplyStatus.Неизвестен; [Required] public DateTime DateCreate { get; private set; } = DateTime.Now; public DateTime? DateImplement { get; private set; } public int OrderId { get; set; } public int ClientId { get; set; } public int ReceivingId { get; set; } public virtual EquipmentReceiving? Receiving { get; set; } private Dictionary? _supplyOrders = null; [NotMapped] public Dictionary SupplyOrders { get { if (_supplyOrders == null) { _supplyOrders = Orders .ToDictionary(recPC => recPC.SupplyId, recPC => recPC.Order as IOrderModel); } return _supplyOrders; } } [ForeignKey("SupplyId")] public virtual List Orders { get; set; } = new(); [ForeignKey("SupplyId")] public virtual List ComponentSupplies { get; set; } = new(); public static Supply Create(ComputerShopDatabase context, SupplyBindingModel model) { return new Supply { Id = model.Id, ClientId = model.ClientId, Status = model.Status, DateCreate = model.DateCreate, DateImplement = model.DateImplement, Orders = model.SupplyOrders.Select(x => new SupplyOrder { Order = context.Orders.First(y => y.Id == x.Key), }).ToList() }; } public void Update(SupplyBindingModel model) { if (model == null) { return; } Status = model.Status; DateImplement = model.DateImplement; } public SupplyViewModel GetViewModel => new() { Id = Id, Status = Status, DateCreate = DateCreate, DateImplement = DateImplement, SupplyOrders = SupplyOrders, ClientId = ClientId }; public void UpdateOrders(ComputerShopDatabase context, SupplyBindingModel model) { var SupplyOrders = context.SupplyOrders.Where(rec => rec.Id == model.Id).ToList(); if (SupplyOrders != null && SupplyOrders.Count > 0) { // удалили те, которых нет в модели context.SupplyOrders.RemoveRange(SupplyOrders.Where(rec => !model.SupplyOrders.ContainsKey(rec.OrderId))); context.SaveChanges(); // обновили количество у существующих записей foreach (var updateOrder in SupplyOrders) { model.SupplyOrders.Remove(updateOrder.OrderId); } context.SaveChanges(); } var supply = context.Supplies.First(x => x.Id == Id); foreach (var pc in model.SupplyOrders) { context.SupplyOrders.Add(new SupplyOrder { Supply = supply, Order = context.Orders.First(x => x.Id == pc.Key) }); context.SaveChanges(); } _supplyOrders = null; } } }