Accounts_Descriptors.cs 707 B

123456789101112131415161718192021222324252627
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. [Caption("Configure Accounts Panels")]
  8. public class CanConfigureAccountsPanels : EnabledSecurityDescriptor<AccountsPayableLicense>
  9. {
  10. }
  11. [Caption("Open and Close Purchase Orders")]
  12. public class CanOpenAndClosePurchaseOrders : EnabledSecurityDescriptor<AccountsPayableLicense, Assignment>
  13. {
  14. }
  15. [Caption("Check Bills")]
  16. public class CanCheckBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>
  17. {
  18. }
  19. [Caption("Approve Bills")]
  20. public class CanApproveBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>
  21. {
  22. }
  23. }