2024-02-25 14:03:09 +04:00
|
|
|
|
using FishFactoryDataModels.Enums;
|
|
|
|
|
using FishFactoryDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
2024-05-15 19:14:50 +04:00
|
|
|
|
|
2024-02-25 14:03:09 +04:00
|
|
|
|
namespace FishFactoryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Номер")]
|
|
|
|
|
public int Id { get; set; }
|
2024-04-26 00:17:50 +04:00
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("ФИО клиента")]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
2024-05-15 19:14:50 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
2024-04-30 22:57:42 +04:00
|
|
|
|
public int? ImplementerId { get; set; }
|
|
|
|
|
[DisplayName("Исполнитель")]
|
|
|
|
|
public string? ImplementerFIO { get; set; } = null;
|
|
|
|
|
public int CannedId { get; set; }
|
2024-02-25 14:03:09 +04:00
|
|
|
|
[DisplayName("Изделие")]
|
|
|
|
|
public string CannedName { 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; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|