CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/ViewModels/SupplyViewModel.cs

56 lines
1.5 KiB
C#
Raw Permalink Normal View History

using ComputerShopDataModels.Enums;
using ComputerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
2023-12-01 19:59:06 +04:00
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class SupplyViewModel : ISupplyModel
{
[DisplayName("Статус")]
public SupplyStatus Status { get; set; } = SupplyStatus.Неизвестен;
[DisplayName("Дата создания")]
public DateTime DateCreate { get; set; } = DateTime.Now;
[DisplayName("Дата выполнения")]
public DateTime? DateImplement { get; set; }
[DisplayName("Номер")]
public int Id { get; set; }
2023-05-20 08:34:33 +04:00
[DisplayName("Номер клиента")]
public int ClientId { get; set; }
2023-05-20 00:08:47 +04:00
[DisplayName("Номер получения")]
2023-05-20 07:41:13 +04:00
public int? ReceivingId { get; set; }
2023-12-01 19:59:06 +04:00
[DisplayName("Номер комплектующего")]
public int? ComponentId { get; set; }
2023-05-19 18:26:38 +04:00
public Dictionary<int, IOrderModel> SupplyOrders
2023-04-07 16:10:59 +04:00
{
get;
set;
} = new();
2023-12-01 19:59:06 +04:00
2023-05-24 18:51:13 +04:00
public Dictionary<int, IComponentModel> SupplyComponents
{
get;
set;
} = new();
2023-12-01 19:59:06 +04:00
[JsonConstructor]
public SupplyViewModel(Dictionary<int, IOrderModel> SupplyOrders)
{
this.SupplyOrders = SupplyOrders;
}
public SupplyViewModel()
{
}
}
}