2023-03-12 01:50:01 +04:00
|
|
|
|
namespace FlowerShopDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Address { get; }
|
|
|
|
|
DateTime OpeningDate { get; }
|
2023-03-26 01:51:51 +04:00
|
|
|
|
int MaxCountBouquets { get; }
|
2023-03-12 01:50:01 +04:00
|
|
|
|
Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|