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

16 lines
364 B
C#

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