| 123456789101112131415161718192021222324252627282930313233343536373839 | using InABox.Core;namespace Comal.Classes{    [Caption("View Jobs Dock Panel")]    public class CanViewJobDock : EnabledSecurityDescriptor<ProjectManagementLicense, Job>    {    }    [Caption("Create Jobs from Imported Emails")]    public class CanCreateJobsFromEmails : DisabledSecurityDescriptor<ProjectManagementLicense, Job>    {    }    [Caption("Approve Bills of Materials")]    public class CanApproveBillsOfMaterials : EnabledSecurityDescriptor<ProjectManagementLicense, JobBillOfMaterials>    {    }        [Caption("Approve Job Requisitions")]    public class CanApproveJobRequisitions : EnabledSecurityDescriptor<ProjectManagementLicense, JobRequisition>    {    }        [Caption("Change Dates on Document MileStones")]    public class CanEditJobDocumentSetMileStoneDates : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>    {    }    [Caption("View Web General Documents from App")]    public class CanViewGeneralJobDocuments : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>    {    }    [Caption("View Job Documents Mile Stone Files")]    public class CanViewJobDocumentMileStoneFiles : EnabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>    {    }}
 |