Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/PurchaseViewModel.cs

27 lines
832 B
C#
Raw Normal View History

using HardwareShopDataModels.Enums;
using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace HardwareShopContracts.ViewModels
{
public class PurchaseViewModel : IPurchaseModel
{
public int Id { get; set; }
[DisplayName("Цена")]
2023-04-02 15:43:05 +04:00
public double Sum { get; set; }
[DisplayName("Статус покупки")]
public PurchaseStatus PurchaseStatus { get; set; } = PurchaseStatus.Неизвестен;
[DisplayName("Дата оплаты")]
public DateTime? DatePurchase { get; set; }
2023-04-01 16:34:06 +04:00
public int UserId { get; set; }
[DisplayName("Логин пользователя")]
2023-04-01 21:39:41 +04:00
public string UserLogin { get; set; } = string.Empty;
2023-04-01 12:58:12 +04:00
public Dictionary<int, (IGoodModel, int)> PurchaseGoods { get; set; } = new();
}
}