2024-02-11 17:39:43 +04:00
|
|
|
|
using IceCreamShopDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace IceCreamShopContracts.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, (IIceCreamModel, int)> ShopIceCreams
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
2024-03-08 23:03:33 +04:00
|
|
|
|
|
|
|
|
|
[DisplayName("Максимальное количество мороженого")]
|
|
|
|
|
public int IceCreamsMaximum { get; set; }
|
2024-02-11 17:39:43 +04:00
|
|
|
|
}
|
|
|
|
|
}
|