PIbd-22_Chernyshev_Shabunov.../ComputerShopContracts/ViewModels/ShipmentViewModel.cs

36 lines
995 B
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 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
[DisplayName("Номер")]
public int Id { get; set; }
//!!!ТУТ МБ НЕ НУЖЕН DisplayName
[DisplayName("Номер пользователя")]
public int UserId { get; set; }
//!!!МБ ДОБАВИТЬ НИК ПОЛЬЗОВАТЕЛЯ, СОЗДАВШЕГО ПАРТИЮ
public Dictionary<int, IOrderModel> ShipmentOrders { get; set; } = new();
//!!!МБ НЕ НУЖЕН string.Empty
[DisplayName("Поставщик")]
public string ProviderName { get; set; } = string.Empty;
//!!!МБ НЕ НУЖНО DateTime.Now
[DisplayName("Дата поставки")]
public DateTime DateShipment { get; set; } = DateTime.Now;
}
}