16 lines
476 B
C#
16 lines
476 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using FruitBank.Common.Entities;
|
|
using LinqToDB.DataProvider.SapHana;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShippingDocumentToFiles : IEntityInt, ITimeStampInfo
|
|
{
|
|
int FilesId { get; set; }
|
|
int ShippingDocumentId { get; set; }
|
|
DocumentType DocumentType { get; set; }
|
|
|
|
Files? ShippingDocumentFile { get; set; }
|
|
ShippingDocument? ShippingDocument { get; set; }
|
|
} |