PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/ViewModels/OrderViewModel.cs

33 lines
1.2 KiB
C#
Raw Normal View History

2024-02-09 22:08:31 +04:00
using CarRepairShopDataModels;
using CarRepairShopDataModels.Enums;
using CarRepairShopDataModels.Models;
using System.ComponentModel;
namespace CarRepairShopContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
[DisplayName("Номер")]
public int Id { get; set; }
public int RepairId { get; set; }
2024-02-11 18:44:41 +04:00
[DisplayName("Ремонт")]
2024-02-09 22:08:31 +04:00
public string RepairName { get; set; } = string.Empty;
2024-04-06 19:58:28 +04:00
public int ClientId { get; set; }
2024-04-22 22:29:10 +04:00
[DisplayName("Клиент")]
2024-04-06 19:58:28 +04:00
public string ClientFIO { get; set; } = string.Empty;
2024-04-22 22:29:10 +04:00
public int? ImplementerId { get; set; } = null;
[DisplayName("Исполнитель")]
public string ImplementerFIO { get; set; } = string.Empty;
[DisplayName("Количество")]
2024-02-09 22:08:31 +04:00
public int Count { get; set; }
[DisplayName("Сумма")]
public double Sum { get; set; }
[DisplayName("Статус")]
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
[DisplayName("Дата создания")]
public DateTime DateCreate { get; set; } = DateTime.Now;
[DisplayName("Дата выполнения")]
public DateTime? DateImplement { get; set; }
}
}