Accounts_Descriptors.cs 555 B

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