using ComputerShopDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ComputerShopContracts.ViewModels { public class ShipmentViewModel : IShipmentModel { [DisplayName("Номер")] public int Id { get; set; } public int UserId { get; set; } public Dictionary ShipmentOrders { get; set; } = new(); [DisplayName("Поставщик")] public string ProviderName { get; set; } = string.Empty; [DisplayName("Дата поставки")] public DateTime DateShipment { get; set; } = DateTime.Now; } }