2023-02-05 19:12:17 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Enums;
|
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Номер")]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int ReinforcedId { get; set; }
|
2023-04-02 20:52:07 +04:00
|
|
|
|
public int ClientId { get; set; }
|
2023-04-10 21:15:52 +04:00
|
|
|
|
public int? ImplementerId { get; set; }
|
|
|
|
|
[DisplayName("Фамилия исполнителя")]
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
2023-04-02 20:52:07 +04:00
|
|
|
|
[DisplayName("Фамилия клиента")]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
2023-02-05 19:12:17 +04:00
|
|
|
|
[DisplayName("Изделие")]
|
|
|
|
|
public string ReinforcedName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Количество")]
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|