2023-01-31 12:54:51 +04:00
|
|
|
|
using ConfectioneryDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.BindingModels
|
|
|
|
|
{
|
2023-02-14 00:08:23 +04:00
|
|
|
|
public class PastryBindingModel : IPastryModel
|
2023-01-31 12:54:51 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2023-02-14 00:08:23 +04:00
|
|
|
|
public string PastryName { get; set; } = string.Empty;
|
2023-01-31 12:54:51 +04:00
|
|
|
|
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
|
2023-02-14 00:08:23 +04:00
|
|
|
|
public Dictionary<int, (IComponentModel, int)> PastryComponents { get; set; } = new();
|
2023-01-31 12:54:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|