2024-03-09 01:00:32 +04:00
|
|
|
|
using SushiBarDataModels.Models;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using SushiBarContracts.BindingModel;
|
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
2024-03-09 00:35:52 +04:00
|
|
|
|
|
|
|
|
|
namespace SushiBarDatabaseImplement.Models
|
|
|
|
|
{
|
2024-03-09 01:00:32 +04:00
|
|
|
|
public class Sushi : ISushiModel
|
2024-03-09 00:35:52 +04:00
|
|
|
|
{
|
2024-03-09 01:00:32 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public string SushiName { get; set; } = string.Empty;
|
|
|
|
|
[Required]
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
private Dictionary<int, (IComponentModel, int)>? _sushiComponents = null;
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public Dictionary<int, (IComponentModel, int)> SushiComponents
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (_sushiComponents == null)
|
|
|
|
|
{
|
2024-03-09 21:37:08 +04:00
|
|
|
|
_sushiComponents = Components.ToDictionary(recPC => recPC.ComponentId, recPC => (recPC.Component as IComponentModel, recPC.Count));
|
2024-03-09 01:00:32 +04:00
|
|
|
|
}
|
|
|
|
|
return _sushiComponents;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[ForeignKey("SushiId")]
|
|
|
|
|
public virtual List<SushiComponent> Components { get; set; } = new();
|
|
|
|
|
[ForeignKey("SushiId")]
|
|
|
|
|
public virtual List<Order> Orders { get; set; } = new();
|
|
|
|
|
public static Sushi Create(SushiBarDatabase context, SushiBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return new Sushi()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
SushiName = model.SushiName,
|
|
|
|
|
Price = model.Price,
|
|
|
|
|
Components = model.SushiComponents.Select(x => new SushiComponent
|
|
|
|
|
{
|
2024-03-09 21:37:08 +04:00
|
|
|
|
Component = context.Components.First(y => y.Id == x.Key), Count = x.Value.Item2
|
2024-03-09 01:00:32 +04:00
|
|
|
|
}).ToList()
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
public void Update(SushiBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
SushiName = model.SushiName;
|
|
|
|
|
Price = model.Price;
|
|
|
|
|
}
|
|
|
|
|
public SushiViewModel GetViewModel => new()
|
|
|
|
|
{
|
|
|
|
|
Id = Id,
|
|
|
|
|
SushiName = SushiName,
|
|
|
|
|
Price = Price,
|
|
|
|
|
SushiComponents = SushiComponents
|
|
|
|
|
};
|
|
|
|
|
public void UpdateComponents(SushiBarDatabase context, SushiBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
var SushiComponents = context.SushiComponents.Where(rec => rec.SushiId == model.Id).ToList();
|
|
|
|
|
if (SushiComponents != null && SushiComponents.Count > 0)
|
|
|
|
|
{ // удалили те, которых нет в модели
|
2024-03-09 21:37:08 +04:00
|
|
|
|
context.SushiComponents.RemoveRange(SushiComponents.Where(rec => !model.SushiComponents.ContainsKey(rec.ComponentId)));
|
2024-03-09 01:00:32 +04:00
|
|
|
|
context.SaveChanges();
|
|
|
|
|
// обновили количество у существующих записей
|
|
|
|
|
foreach (var updateComponent in SushiComponents)
|
|
|
|
|
{
|
|
|
|
|
updateComponent.Count = model.SushiComponents[updateComponent.ComponentId].Item2;
|
|
|
|
|
model.SushiComponents.Remove(updateComponent.ComponentId);
|
|
|
|
|
}
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
var Sushi = context.Sushis.First(x => x.Id == Id);
|
|
|
|
|
foreach (var pc in model.SushiComponents)
|
|
|
|
|
{
|
|
|
|
|
context.SushiComponents.Add(new SushiComponent
|
|
|
|
|
{
|
|
|
|
|
Sushi = Sushi,
|
|
|
|
|
Component = context.Components.First(x => x.Id == pc.Key),
|
|
|
|
|
Count = pc.Value.Item2
|
|
|
|
|
});
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
_sushiComponents = null;
|
|
|
|
|
}
|
2024-03-09 00:35:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|