25 lines
943 B
C#
25 lines
943 B
C#
using PlumbingRepairContracts.Attributes;
|
|
using PlumbingRepairDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace PlumbingRepairContracts.ViewModels
|
|
{
|
|
public class ShopViewModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
|
|
[Column(title: "Название магазина", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ShopName { get; set; } = string.Empty;
|
|
|
|
[Column(title: "Адрес", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string Address { get; set; } = string.Empty;
|
|
[Column(title: "Максимальное количество работ", width: 150)]
|
|
public int maxCountWorks { get; set; }
|
|
[Column(title: "Дата открытия", width: 150, format: "Date: dd/MM/yyyy")]
|
|
public DateTime DateOpening { get; set; }
|
|
public Dictionary<int, (IWorkModel, int)> ShopWorks { get; set; } = new();
|
|
|
|
}
|
|
}
|