37 lines
1.5 KiB
C#
Raw Normal View History

2024-05-18 14:59:42 +04:00
using TravelCompanyDataModels.Enums;
2024-04-18 16:34:54 +04:00
using TravelCompanyDataModels.Models;
2024-02-07 19:42:14 +04:00
using System.ComponentModel;
2024-05-18 14:59:42 +04:00
using TravelCompanyContracts.Attributes;
2024-02-07 19:42:14 +04:00
namespace TravelCompanyContracts.ViewModels
{
2024-04-18 16:34:54 +04:00
public class OrderViewModel : IOrderModel
2024-02-07 19:42:14 +04:00
{
2024-05-18 14:59:42 +04:00
[Column(title: "Номер", width: 90)]
2024-02-07 19:42:14 +04:00
public int Id { get; set; }
2024-05-18 14:59:42 +04:00
[Column(visible: false)]
2024-02-07 19:42:14 +04:00
public int TravelId { get; set; }
2024-05-18 14:59:42 +04:00
[Column(visible: false)]
2024-04-18 16:34:54 +04:00
public int ClientId { get; set; }
2024-05-18 14:59:42 +04:00
[Column(visible: false)]
2024-05-02 14:54:56 +04:00
public int? ImplementerId { get; set; } = null;
2024-05-18 14:59:42 +04:00
[Column(title: "Клиент", width: 190)]
2024-04-18 16:34:54 +04:00
public string ClientFIO { get; set; } = string.Empty;
2024-05-18 14:59:42 +04:00
[Column(title: "Путёвка", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-02-07 19:42:14 +04:00
public string TravelName { get; set; } = string.Empty;
2024-05-18 14:59:42 +04:00
[Column(title: "Исполнитель", width: 150)]
2024-05-02 14:54:56 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-05-18 14:59:42 +04:00
[Column(title: "Количество", width: 100)]
2024-02-07 19:42:14 +04:00
public int Count { get; set; }
2024-05-18 14:59:42 +04:00
[Column(title: "Сумма", width: 120)]
2024-02-07 19:42:14 +04:00
public double Sum { get; set; }
2024-05-18 14:59:42 +04:00
[Column(title: "Статус", width: 70)]
2024-02-07 19:42:14 +04:00
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
2024-05-18 14:59:42 +04:00
[Column(title: "Дата создания", width: 120)]
2024-02-07 19:42:14 +04:00
public DateTime DateCreate { get; set; } = DateTime.Now;
2024-05-18 14:59:42 +04:00
[Column(title: "Дата выполнения", width: 120)]
2024-02-07 19:42:14 +04:00
public DateTime? DateImplement { get; set; }
}
}