15 lines
446 B
C#
15 lines
446 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using FruitBank.Common.Entities;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShipping : IEntityInt, ITimeStampInfo//, IMeasured
|
|
{
|
|
DateTime ShippingDate { get; set; }
|
|
string LicencePlate { get; set; }
|
|
bool IsAllMeasured { get; set; }
|
|
DateTime? MeasuredDate { get; set; }
|
|
|
|
public List<ShippingDocument>? ShippingDocuments { get; set; }
|
|
} |