30 lines
935 B
C#
30 lines
935 B
C#
|
using FoodOrdersDataModels.Enums;
|
|||
|
using FoodOrdersDataModels.Models;
|
|||
|
using HardwareShopDataModels.Models;
|
|||
|
using System.ComponentModel;
|
|||
|
namespace FoodOrdersContracts.BindingModels
|
|||
|
{
|
|||
|
public class PurachaseViewModel : IPurchaseModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
[DisplayName("Цена")]
|
|||
|
public decimal Sum { get; set; }
|
|||
|
|
|||
|
[DisplayName("Статус покупки")]
|
|||
|
public PurchaseStatus PurchaseStatus { get; set; } = PurchaseStatus.Неизвестен;
|
|||
|
|
|||
|
[DisplayName("Дата оплаты")]
|
|||
|
public DateTime? DatePurchase { get; set; }
|
|||
|
|
|||
|
public int UserID { get; set; }
|
|||
|
|
|||
|
[DisplayName("Email клиента")]
|
|||
|
public string UserEmail { get; set; } = string.Empty;
|
|||
|
|
|||
|
public Dictionary<int, (IBuildModel, int)>? PurchaseBuilds { get; set; }
|
|||
|
|
|||
|
public Dictionary<int, (IGoodModel, int)> PurchaseGoods { get; set; } = new();
|
|||
|
}
|
|||
|
}
|