2023-01-31 21:50:02 +04:00
|
|
|
|
using AircraftPlantDataModels.Enums;
|
|
|
|
|
using AircraftPlantDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AircraftPlantContracts.ViewModels
|
|
|
|
|
{
|
2023-01-31 22:03:00 +04:00
|
|
|
|
public class OrderViewModel : IOrderModel
|
2023-01-31 21:50:02 +04:00
|
|
|
|
{
|
|
|
|
|
public int PlaneId { get; set; }
|
|
|
|
|
|
2023-02-01 05:56:10 +04:00
|
|
|
|
[DisplayName("Номер")]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2023-01-31 21:50:02 +04:00
|
|
|
|
[DisplayName("Самолет")]
|
|
|
|
|
public string PlaneName { 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; }
|
|
|
|
|
}
|
|
|
|
|
}
|