2023-02-12 15:11:10 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ShopViewModel : IShopModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Название магазина")]
|
2023-04-09 18:26:39 +04:00
|
|
|
|
public string ShopName { get; set; } = string.Empty;
|
2023-02-12 15:11:10 +04:00
|
|
|
|
|
|
|
|
|
[DisplayName("Адрес магазина")]
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[DisplayName("Время открытия")]
|
2023-03-12 17:46:52 +04:00
|
|
|
|
public DateTime DateOpening { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Вместимость магазина")]
|
|
|
|
|
public int ReinforcedMaxCount { get; set; }
|
|
|
|
|
|
2023-04-09 18:26:39 +04:00
|
|
|
|
public Dictionary<int, (IReinforcedModel, int)> ShopReinforcedies { get; set; } = new();
|
2023-02-12 15:11:10 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|