1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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>
- {
- }
- [Caption("View All Jobs (Not Restricted to Jobs Employee is Assigned to")]
- public class CanViewAllJobs : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Open Mobile Native PDF Viewer")]
- public class CanOpenMobileNativePDFViewer : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- }
|