PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/ViewModels/OrderViewModel.cs

50 lines
1.2 KiB
C#
Raw Normal View History

2024-02-06 12:37:25 +04:00
using GiftShopDataModels.Enums;
using GiftShopDataModels.Models;
using System.ComponentModel;
namespace GiftShopContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
2024-05-15 15:07:11 +04:00
[DisplayName("Номер")]
2024-02-06 12:37:25 +04:00
public int Id { get; set; }
public int GiftId { get; set; }
2024-04-09 17:02:29 +04:00
public int ClientId { get; set; }
2024-05-15 15:07:11 +04:00
public int? ImplementerId { get; set; }
[DisplayName("Изделие")]
2024-02-06 12:37:25 +04:00
public string GiftName { get; set; } = string.Empty;
2024-05-15 15:07:11 +04:00
[DisplayName("ФИО исполнителя")]
public string ImplementerFIO { get; set; } = string.Empty;
[DisplayName("Клиент")]
2024-04-09 17:02:29 +04:00
public string ClientFIO { get; set; } = string.Empty;
[DisplayName("Количество")]
2024-02-06 12:37:25 +04:00
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; }
}
}