PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryContracts/ViewModels/OrderViewModel.cs

55 lines
1.9 KiB
C#
Raw Permalink Normal View History

2024-06-18 10:22:44 +04:00
using ConfectioneryContracts.Attributes;
using ConfectioneryDataModels.Enums;
2024-03-23 19:50:45 +04:00
using ConfectioneryDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
2024-06-18 10:22:44 +04:00
[Column(title: "Номер", width: 100)]
2024-03-23 19:50:45 +04:00
public int Id { get; set; }
2024-06-18 10:22:44 +04:00
[Column(visible: false)]
2024-03-23 19:50:45 +04:00
public int PastryId { get; set; }
2024-06-18 10:22:44 +04:00
[Column(title: "Кондитерское изделие", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-03-23 19:50:45 +04:00
public string PastryName { get; set; } = string.Empty;
2024-06-18 10:22:44 +04:00
[Column(visible: false)]
2024-05-02 17:46:55 +04:00
public int ClientId { get; set; }
2024-06-18 10:22:44 +04:00
[Column(title: "ФИО клиента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-02 17:46:55 +04:00
public string ClientFIO { get; set; } = string.Empty;
2024-06-18 10:22:44 +04:00
[Column(visible: false)]
public string ClientEmail { get; set; } = string.Empty;
[Column(visible: false)]
2024-05-02 21:52:37 +04:00
public int? ImplementerId { get; set; }
2024-06-18 10:22:44 +04:00
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-05-02 21:52:37 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-06-18 10:22:44 +04:00
[Column(title: "Количество", width: 100)]
2024-03-23 19:50:45 +04:00
public int Count { get; set; }
2024-06-18 10:22:44 +04:00
[Column(title: "Сумма", width: 120)]
2024-03-23 19:50:45 +04:00
public double Sum { get; set; }
2024-06-18 10:22:44 +04:00
[Column(title: "Статус", width: 100)]
2024-03-23 19:50:45 +04:00
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
2024-06-18 10:22:44 +04:00
[Column(title: "Дата создания", width: 120)]
2024-03-23 19:50:45 +04:00
public DateTime DateCreate { get; set; } = DateTime.Now;
2024-06-18 10:22:44 +04:00
[Column(title: "Дата выполнения", width: 120)]
2024-03-23 19:50:45 +04:00
public DateTime? DateImplement { get; set; }
}
}