2023-05-02 22:51:41 +04:00
|
|
|
|
using RestaurantDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RestaurantContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ProductBindingModel : IProductModel
|
|
|
|
|
{
|
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-16 23:26:45 +04:00
|
|
|
|
public double Price { get; set; }
|
2023-05-02 22:51:41 +04:00
|
|
|
|
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<int, (IComponentModel, int)> ProductComponents { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|