2023-02-05 22:52:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AbstractFoodOrdersDataModels.Models
|
|
|
|
|
{
|
2023-02-06 09:16:53 +04:00
|
|
|
|
public interface IDishModel : IId
|
2023-02-05 22:52:37 +04:00
|
|
|
|
{
|
2023-02-06 09:16:53 +04:00
|
|
|
|
string DishName { get; }
|
2023-02-05 22:52:37 +04:00
|
|
|
|
double Price { get; }
|
2023-02-06 09:16:53 +04:00
|
|
|
|
Dictionary<int, (IComponentModel, int)> DishComponents { get; }
|
2023-02-05 22:52:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|