PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopContracts/ViewModels/ShopViewModel.cs
2024-05-17 02:35:47 +04:00

25 lines
888 B
C#

using FlowerShopDataModels.Models;
using System.ComponentModel;
namespace FlowerShopContracts.ViewModels
{
public class ShopViewModel : IShopModel
{
public int Id { get; set; }
[DisplayName("Название магазина")]
public string ShopName { get; set; } = string.Empty;
[DisplayName("Адрес магазина")]
public string Address { get; set; } = string.Empty;
[DisplayName("Дата открытия")]
public DateTime DateOpening { get; set; } = DateTime.Now;
public Dictionary<int, (IFlowerModel, int)> ShopFlowers
{
get;
set;
} = new();
[DisplayName("Максимальное количество цветков")]
public int MaximumFlowers { get; set; }
public Dictionary<int, ShopFlowerViewModel> ViewFlowers { get; set; } = new();
}
}