| 123456789101112131415161718192021222324252627 | 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("Check Bills")]    public class CanCheckBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>    {    }    [Caption("Approve Bills")]    public class CanApproveBills : EnabledSecurityDescriptor<AccountsPayableLicense, Bill>    {    }}
 |