ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/ViewModels/OrderViewModel.cs

56 lines
1.7 KiB
C#
Raw Normal View History

2024-06-01 17:37:58 +04:00
using SushiBarContracts.Attributes;
using SushiBarDataModels.Enums;
using SushiBarDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.ViewModels
{
2024-06-01 17:37:58 +04:00
public class OrderViewModel : IOrderModel
{
[Column(title: "Номер", width: 90)]
public int Id { get; set; }
[Column(visible: false)]
public int ClientId { get; set; }
[Column(title: "Имя клиента", width: 190)]
public string ClientFIO { get; set; } = string.Empty;
[Column(visible: false)]
2024-06-01 16:27:44 +04:00
public string ClientEmail { get; set; } = string.Empty;
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(visible: false)]
public int? ImplementerId { get; set; }
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Исполнитель", width: 150)]
public string? ImplementerFIO { get; set; } = null;
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(visible: false)]
public int SushiId { get; set; }
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Суши", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string SushiName { get; set; } = string.Empty;
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Количество", width: 100)]
public int Count { get; set; }
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Сумма", width: 120)]
public double Sum { get; set; }
2024-05-22 22:23:36 +04:00
2024-06-01 17:37:58 +04:00
[Column(title: "Статус", width: 70)]
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
[Column(title: "Дата создания", width: 120)]
public DateTime DateCreate { get; set; } = DateTime.Now;
[Column(title: "Дата выполнения", width: 120)]
public DateTime? DateImplement { get; set; }
}
}
2024-06-01 17:37:58 +04:00