PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/ViewModels/ShopViewModel.cs

27 lines
805 B
C#

using SushiBarDataModels.Models;
using System.ComponentModel;
namespace SushiBarContracts.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;
[DisplayName("Максимальное количество суши")]
public int MaxCountSushi { get; set; }
public Dictionary<int, (ISushiModel, int)> ListSushi
{
get;
set;
} = new();
}
}