PIbd-23_Kharlamov_A.A._Food.../FoodOrders/AbstractFoodOrdersDataModels/Models/IDishModel.cs

16 lines
355 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFoodOrdersDataModels.Models
{
public interface IDishModel : IId
{
string DishName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> DishComponents { get; }
}
}