PIbd-21_Bakalskaya_E.D._Sus.../SushiBarDataModels/IShopModel.cs

14 lines
322 B
C#

using SushiBarDataModels.Models;
namespace SushiBarDataModels
{
public interface IShopModel : IId
{
int MaxCountSushis { get; }
string ShopName { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (ISushiModel, int)> ShopSushis{ get; }
}
}