2023-03-12 01:50:01 +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-03-26 01:51:51 +04:00
|
|
|
|
public int MaxCountBouquets { get; set; }
|
|
|
|
|
|
2023-03-12 01:50:01 +04:00
|
|
|
|
public Dictionary<int, (IBouquetModel, int)> ShopBouquets { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|