| 1234567891011121314151617181920212223242526272829303132 | using InABox.Core;using System;using System.Collections.Generic;using System.Text;namespace Comal.Classes{    [Caption("Configure Accounts Panels")]    public class CanConfigureAccountsPanels : EnabledSecurityDescriptor<AccountsPayableLicense>    {    }    [Caption("Open and Close Purchase Orders")]    public class CanOpenAndClosePurchaseOrders : EnabledSecurityDescriptor<AccountsPayableLicense, Assignment>    {    }    [Caption("Issue Treatment Purchase Orders")]    public class CanIssueTreatmentPurchaseOrders : EnabledSecurityDescriptor<AccountsPayableLicense, PurchaseOrder>    {    }    [Caption("Check Bills")]    public class CanCheckBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>    {    }    [Caption("Approve Bills")]    public class CanApproveBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>    {    }}
 |