BillDocument.cs 215 B

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