2024-03-25 01:38:54 +04:00
|
|
|
|
namespace FoodOrdersDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
string ShopName { get; }
|
|
|
|
|
|
|
|
|
|
string Address { get; }
|
|
|
|
|
|
2024-04-15 23:43:49 +04:00
|
|
|
|
int MaxCountDishs { get; }
|
|
|
|
|
|
2024-03-25 01:38:54 +04:00
|
|
|
|
DateTime DateOpening { get; }
|
|
|
|
|
|
|
|
|
|
Dictionary<int, (IDishModel, int)> ShopDishs { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|