ConsignmentDocument.cs 237 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Consignment))]
  5. public class ConsignmentDocument : EntityDocument<ConsignmentLink>, IManyToMany<Consignment, Document>, ILicense<LogisticsLicense>
  6. {
  7. }
  8. }