2024-04-21 15:33:17 +04:00
|
|
|
|
using AccountingWarehouseProductsDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountingWarehouseProductsContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ShipmentViewModel : IShipmentModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Номер")]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Дата отгрузки")]
|
2024-05-01 22:21:11 +04:00
|
|
|
|
public string ShipmentDate { get; set; } = string.Empty;
|
2024-04-21 15:33:17 +04:00
|
|
|
|
|
|
|
|
|
[DisplayName("Количество")]
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Получатель")]
|
|
|
|
|
public string Recipient { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|