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; }
|
|
|
|
|
}
|
|
|
|
|
}
|