PIbd-21_Musoev_D.T._FlowerShop/FlowerShop/FlowerShopContracts/BindingModels/ShopBindingModel.cs

20 lines
484 B
C#
Raw Normal View History

2023-06-13 23:37:46 +04:00
using FlowerShopDataModels.Models;
namespace FlowerShopContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public DateTime OpeningDate { get; set; }
2023-06-13 23:57:26 +04:00
public int MaxCountBouquets { get; set; }
2023-06-13 23:37:46 +04:00
public Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; set; }
}
}