PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaDatabaseImplement/Models/Pizza.cs
revengel66 a3b3120398 1
2024-03-27 00:02:36 +04:00

95 lines
3.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using PizzeriaDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.ViewModels;
namespace PizzeriaDatabaseImplement.Models
{
public class Pizza : IPizzaModel
{
public int Id { get; set; }
[Required]
public string PizzaName { get; set; } = string.Empty;
[Required]
public double Price { get; set; }
private Dictionary<int, (IComponentModel, int)>? _PizzaComponents = null;
[NotMapped]
public Dictionary<int, (IComponentModel, int)> PizzaComponents
{
get
{
if (_PizzaComponents == null)
{
_PizzaComponents = Components.ToDictionary(recPC => recPC.ComponentId, recPC => (recPC.Component as IComponentModel, recPC.Count));
}
return _PizzaComponents;
}
}
[ForeignKey("PizzaId")]
public virtual List<PizzaComponent> Components { get; set; } = new();
[ForeignKey("PizzaId")]
public virtual List<Order> Orders { get; set; } = new();
public static Pizza Create(PizzeriaDatabase context, PizzaBindingModel model)
{
return new Pizza()
{
Id = model.Id,
PizzaName = model.PizzaName,
Price = model.Price,
Components = model.PizzaComponents.Select(x => new PizzaComponent
{
Component = context.Components.First(y => y.Id == x.Key),
Count = x.Value.Item2
}).ToList()
};
}
public void Update(PizzaBindingModel model)
{
PizzaName = model.PizzaName;
Price = model.Price;
}
public PizzaViewModel GetViewModel => new()
{
Id = Id,
PizzaName = PizzaName,
Price = Price,
PizzaComponents = PizzaComponents
};
public void UpdateComponents(PizzeriaDatabase context, PizzaBindingModel model)
{
var PizzaComponents = context.PizzaComponents.Where(rec => rec.PizzaId == model.Id).ToList();
if (PizzaComponents != null && PizzaComponents.Count > 0)
{ // удалили те, которых нет в модели
context.PizzaComponents.RemoveRange(PizzaComponents.Where(rec => !model.PizzaComponents.ContainsKey(rec.ComponentId)));
context.SaveChanges();
// обновили количество у существующих записей
foreach (var updateComponent in PizzaComponents)
{
updateComponent.Count = model.PizzaComponents[updateComponent.ComponentId].Item2;
model.PizzaComponents.Remove(updateComponent.ComponentId);
}
context.SaveChanges();
}
var Pizza = context.Pizzas.First(x => x.Id == Id);
foreach (var pc in model.PizzaComponents)
{
context.PizzaComponents.Add(new PizzaComponent
{
Pizza = Pizza,
Component = context.Components.First(x => x.Id == pc.Key),
Count = pc.Value.Item2
});
context.SaveChanges();
}
_PizzaComponents = null;
}
}
}