using SushiBarContracts.BindingModels; using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; namespace SushiBarListImplement.Models { public class Sushi : ISushiModel { public int Id { get; private set; } public string SushiName { get; private set; } = string.Empty; public double Price { get; private set; } public Dictionary SushiIngredients { get; private set; } = new Dictionary(); public static Sushi? Create(SushiBindingModel? model) { if (model == null) { return null; } return new Sushi() { Id = model.Id, SushiName = model.SushiName, Price = model.Price, SushiIngredients = model.SushiIngredients }; } public void Update(SushiBindingModel? model) { if (model == null) { return; } SushiName = model.SushiName; Price = model.Price; SushiIngredients = model.SushiIngredients; } public SushiViewModel GetViewModel => new() { Id = Id, SushiName = SushiName, Price = Price, SushiIngredients = SushiIngredients }; } }