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

25 lines
678 B
C#
Raw Normal View History

2023-02-13 23:13:13 +04:00
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;
public Dictionary<int, (ISushiModel, int)> ListSushi
{
get;
set;
} = new();
}
}