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 ComponentBindingModel : IComponentModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Price { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
2023-05-16 23:26:45 +04:00
|
|
|
|
public List<(IProviderModel, int, DateTime)> ComponentProviders { get; set; } = new();
|
2023-05-02 22:51:41 +04:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|