PIbd21_Makarov_DV_FlowerShop/FlowerShop/FlowerShopContracts/ViewModels/OrderViewModel.cs

37 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using FlowerShopContracts.Attributes;
using FlowerShopDataModels.Enums;
using FlowerShopDataModels.Models;
namespace FlowerShopContracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
[Column(title: "Номер", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
public int Id { get; set; }
[Column(visible: false)]
public int FlowerId { get; set; }
[Column(visible: false)]
public int ClientId { get; set; }
[Column(visible: false)]
public int? ImplementerId { get; set; }
[Column(title: "Изделие", gridViewAutoSize: GridViewAutoSize.AllCells, isUseAutoSize: true)]
public string FlowerName { get; set; } = string.Empty;
[Column(title: "ФИО клиента", width: 120)]
public string ClientFIO { get; set; } = string.Empty;
[Column(title: "Почта клиента", width: 190]
public string ClientEmail { get; set; } = string.Empty;
[Column(title: "ФИО исполнителя", width: 120)]
public string ImplementerFIO { get; set; }=string.Empty;
[Column(title: "Количество", width: 100)]
public int Count { get; set; }
[Column(title: "Сумма", width: 75)]
public double Sum { get; set; }
[Column(title: "Статус", width:70)]
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
[Column(title: "Дата создания", width: 120)]
public DateTime DateCreate { get; set; } = DateTime.Now;
[Column(title: "Дата выполнения", width:120)]
public DateTime? DateImplement { get; set; }
}
}