2024-05-16 00:34:01 +04:00
|
|
|
|
using AutomobilePlantContracts.Attributes;
|
|
|
|
|
using AutomobilePlantDataModels.Enums;
|
2024-02-11 16:43:19 +04:00
|
|
|
|
using AutomobilePlantDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
2024-05-16 00:34:01 +04:00
|
|
|
|
[Column("Number", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int CarId { get; set; }
|
|
|
|
|
[Column("Car's name", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public string CarName { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
[Column("Client's FIO", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ImplementerId { get; set; }
|
|
|
|
|
[Column("Implementer's FIO", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
|
[Column("Count", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
[Column("Sum", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
[Column("Status", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
|
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
|
|
|
|
[Column("Date of creation", width: 100)]
|
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
|
|
|
|
[Column("Date of completion", width: 100)]
|
|
|
|
|
public DateTime? DateImplement { get; set; }
|
|
|
|
|
}
|
2024-02-11 16:43:19 +04:00
|
|
|
|
}
|