47 lines
1.4 KiB
C#
Raw Normal View History

2024-06-22 16:00:21 +04:00
using RenovationWorkContracts.Attributes;
2024-04-17 09:22:08 +04:00
using RenovationWorkDataModels.Enums;
using RenovationWorkDataModels.Models;
using System.ComponentModel;
namespace RenovationWorkContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
2024-06-22 16:00:21 +04:00
[Column(title: "Номер", width: 90)]
public int Id { get; set; }
[Column(visible: false)]
public int? ImplementerId { get; set; } = null;
[Column(visible: false)]
public int ClientId { get; set; }
[Column(title: "Имя клиента", width: 190)]
public string ClientFIO { get; set; } = string.Empty;
[Column(visible: false)]
public int RepairId { get; set; }
[Column(title: "Изделие", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string RepairName { get; set; } = string.Empty;
[Column(title: "Количество", width: 100)]
public int Count { get; set; }
[Column(title: "Сумма", width: 120)]
public double Sum { get; set; }
[Column(title: "Статус", width: 70)]
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
[Column(title: "Исполнитель", width: 150)]
public string ImplementerFIO { get; set; } = string.Empty;
[Column(title: "Дата создания", width: 120)]
public DateTime DateCreate { get; set; } = DateTime.Now;
[Column(title: "Дата выполнения", width: 120)]
public DateTime? DateImplement { get; set; }
2024-04-17 09:22:08 +04:00
}
}