PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopDataModels/Models/IShopModel.cs

11 lines
299 B
C#
Raw Normal View History

2024-04-04 00:29:16 +04:00
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
2024-04-19 02:23:50 +04:00
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
2024-04-04 00:29:16 +04:00
DateTime DateOpening { get; }
2024-04-19 02:23:50 +04:00
int MaximumFlowers { get; }
2024-04-04 00:29:16 +04:00
}
}