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

11 lines
262 B
C#
Raw Normal View History

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