2024-04-21 15:33:17 +04:00
|
|
|
|
using AccountingWarehouseProductsDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountingWarehouseProductsContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ShipmentBindingModel : IShipmentModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-07 16:15:07 +04:00
|
|
|
|
public DateTime? ShipmentDate { get; set; }
|
2024-04-21 15:33:17 +04:00
|
|
|
|
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Recipient { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|