Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/ViewModels/OrderViewModel.cs

52 lines
1.7 KiB
C#
Raw Normal View History

2024-05-16 20:23:36 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Enums;
2024-03-22 20:10:17 +04:00
using PrecastConcretePlantDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
2024-05-16 20:23:36 +04:00
[Column(title: "Номер", width: 90)]
2024-03-22 20:10:17 +04:00
public int Id { get; set; }
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(visible: false)]
2024-04-18 20:50:43 +04:00
public int ClientId { get; set; }
2024-05-16 20:23:36 +04:00
[Column(title: "ФИО клиента", width: 190)]
2024-04-18 20:50:43 +04:00
public string ClientFIO { get; set; } = string.Empty;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(visible: false)]
public int? ImplementerId { get; set; }
2024-05-02 20:47:10 +04:00
[DisplayName("ФИО исполнителя")]
public string? ImplementerFIO { get; set; } = string.Empty;
2024-05-16 20:23:36 +04:00
[Column(visible: false)]
public int ReinforcedId { get; set; }
[Column(title: "Изделие", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-03-22 20:10:17 +04:00
public string ReinforcedName { get; set; } = string.Empty;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Количество", width: 100)]
2024-03-22 20:10:17 +04:00
public int Count { get; set; }
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Сумма", width: 100)]
2024-03-22 20:10:17 +04:00
public double Sum { get; set; }
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Статус", width: 90)]
2024-03-22 20:10:17 +04:00
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Дата создания", width: 120)]
2024-03-22 20:10:17 +04:00
public DateTime DateCreate { get; set; } = DateTime.Now;
2024-05-02 20:47:10 +04:00
2024-05-16 20:23:36 +04:00
[Column(title: "Дата выполнения", width: 120)]
2024-04-05 17:36:10 +04:00
public DateTime? DateImplement { get; set; }
2024-03-22 20:10:17 +04:00
}
}