17 lines
528 B
C#
17 lines
528 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using FruitBank.Common.Entities;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShippingDocument: IEntityInt, ITimeStampInfo
|
|
{
|
|
public int PartnerId { get; set; }
|
|
public int ShippingId { get; set; }
|
|
public DateTime ShippingDate { get; set; }
|
|
public string Country { get; set; }
|
|
public bool IsAllMeasured { get; set; }
|
|
|
|
public Partner? Partner { get; set; }
|
|
public List<ShippingItem>? ShippingItems { get; set; }
|
|
} |