PIbd-23_Polevoy_S.V._Flower.../FlowerShop/FlowerShopDataModels/Models/IShopModel.cs

12 lines
300 B
C#

namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime OpeningDate { get; }
int MaxCountBouquets { get; }
Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; }
}
}