kagbie3nn@mail.ru 688621e4ef 2 усл
2024-06-17 23:07:23 +04:00

25 lines
824 B
C#

using ComputersShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.ViewModels
{
public class ShopViewModel : IShopModel
{
public int Id { get; set; }
[DisplayName("Название")]
public string ShopName { get; set; } = string.Empty;
[DisplayName("Адрес")]
public string Adress { get; set; } = string.Empty;
[DisplayName("Дата открытия")]
public DateTime OpeningDate { get; set; }
public Dictionary<int, (IComputerModel, int)> ShopComputers { get; set; } = new();
[DisplayName("Вместимость магазина")]
public int Capacity { get; set; }
}
}