2024-02-10 13:06:58 +04:00
|
|
|
|
using IceCreamShopDataModels.Enums;
|
|
|
|
|
using IceCreamShopDataModels.Models;
|
2024-05-16 22:59:22 +04:00
|
|
|
|
using IceCreamShopContracts.Attributes;
|
2024-02-10 13:06:58 +04:00
|
|
|
|
|
|
|
|
|
namespace IceCreamShopContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Номер", width: 100)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public int IceCreamId { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Мороженое", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public string IceCreamName { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-07 18:18:58 +04:00
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "ФИО клиента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-04-07 18:18:58 +04:00
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-05-06 02:20:47 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-21 21:02:36 +04:00
|
|
|
|
public int? ImplementerId { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-04-21 21:02:36 +04:00
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Количество", width: 100)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Сумма", width: 120)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Статус", width: 100)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Дата создания", width: 120)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
[Column(title: "Дата выполнения", width: 120)]
|
2024-02-10 13:06:58 +04:00
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|