2024-06-22 10:36:54 +04:00
|
|
|
|
using SecuritySystemContracts.Attributes;
|
|
|
|
|
using SecuritySystemDataModels.Enums;
|
2024-05-07 15:10:34 +04:00
|
|
|
|
using SecuritySystemDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SecuritySystemContracts.ViewModels
|
|
|
|
|
{
|
2024-06-22 10:36:54 +04:00
|
|
|
|
//класс для отображения пользователю информации о заказах
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int Id { get; set; }
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int ClientId { get; set; }
|
2024-05-08 08:03:51 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ImplementerId { get; set; }
|
2024-05-08 08:37:10 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int SecureId { get; set; }
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "ФИО клиента", width: 150)]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
2024-05-08 08:03:51 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Изделие", width: 150)]
|
|
|
|
|
public string SecureName { get; set; } = string.Empty;
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "ФИО исполнителя", width: 150)]
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2024-05-08 08:37:10 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Количество", width: 150)]
|
|
|
|
|
public int Count { get; set; }
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Сумма", width: 150)]
|
|
|
|
|
public double Sum { get; set; }
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Статус", width: 150)]
|
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Дата создания", width: 150)]
|
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
2024-05-07 15:10:34 +04:00
|
|
|
|
|
2024-06-22 10:36:54 +04:00
|
|
|
|
[Column(title: "Дата выполнения", width: 150)]
|
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
}
|
2024-05-08 08:03:51 +04:00
|
|
|
|
}
|