2024-04-03 17:52:29 +04:00
|
|
|
|
using PizzeriaContracts.Attributes;
|
|
|
|
|
using PizzeriaDataModels.Enums;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
using PizzeriaDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PizzeriaContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Номер", width: 90)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-03-21 13:21:25 +04:00
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Имя клиента", width: 190)]
|
2024-03-21 13:21:25 +04:00
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-02 21:27:34 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
2024-04-02 16:35:18 +04:00
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-02 21:27:34 +04:00
|
|
|
|
public int? ImplementerId { get; set; }
|
2024-04-03 17:52:29 +04:00
|
|
|
|
|
|
|
|
|
[Column(title: "Исполнитель", width: 150)]
|
2024-03-28 21:32:49 +04:00
|
|
|
|
public string? ImplementerFIO { get; set; } = null;
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public int PizzaId { get; set; }
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Пицца", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public string PizzaName { get; set; } = string.Empty;
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Количество", width: 100)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Сумма", width: 120)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Статус", width: 70)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Дата создания", width: 120)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
[Column(title: "Дата выполнения", width: 120)]
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|