FruitBankHybridApp/FruitBank.Common/Interfaces/IPartner.cs

26 lines
663 B
C#

using AyCode.Core.Interfaces;
using AyCode.Entities;
using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
using FruitBank.Common.Entities;
namespace FruitBank.Common.Interfaces;
public interface ICargoPartner : IPartnerBase
{
List<CargoTruck>? CargoTrucks { get; set; }
}
public interface IPartner : IPartnerBase
{
List<ShippingDocument>? ShippingDocuments { get; set; }
}
public interface IPartnerBase : ICompanyInfoBase, IEntityInt, ITimeStampInfo
{
string CertificationNumber { get; set; }
string Currency { get; set; }
string Country { get; set; }
string State { get; set; }
string County { get; set; }
}