CourseWork_CompShop/ComputerShopProvider/ComputerShopDatabaseImplement/Models/Supply.cs

112 lines
3.8 KiB
C#
Raw Normal View History

2023-04-07 16:10:59 +04:00
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 ReceivingId { get; set; }
private Dictionary<int, (IOrderModel, int)>? _supplyOrders =
null;
[NotMapped]
2023-05-18 23:41:42 +04:00
public Dictionary<int, (int, IOrderModel)> SupplyOrders
2023-04-07 16:10:59 +04:00
{
get
{
if (_supplyOrders == null)
{
_supplyOrders = Orders
2023-05-18 23:41:42 +04:00
.ToDictionary(recPC => recPC.SupplyId, recPC =>
(recPC.OrderId, recPC.Order as IOrderModel));
2023-04-07 16:10:59 +04:00
}
return _supplyOrders;
}
}
[ForeignKey("SupplyId")]
public virtual List<SupplyOrder> Orders { get; set; } = new();
[ForeignKey("SupplyId")]
2023-05-18 22:18:40 +04:00
public virtual List<ComponentSupply> ComponentSupplies { get; set; } = new();
2023-04-07 16:53:49 +04:00
2023-04-07 16:10:59 +04:00
public static Supply Create(ComputerShopDatabase context, SupplyBindingModel model)
{
return new Supply
{
Id = model.Id,
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
};
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,
2023-05-18 23:41:42 +04:00
Order = context.Orders.First(x => x.Id == pc.Key)
2023-04-07 16:10:59 +04:00
});
context.SaveChanges();
}
_supplyOrders = null;
}
}
}