Project_Descriptors.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("View Jobs Dock Panel")]
  5. public class CanViewJobDock : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
  6. {
  7. }
  8. [Caption("Create Jobs from Imported Emails")]
  9. public class CanCreateJobsFromEmails : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
  10. {
  11. }
  12. [Caption("Approve Bills of Materials")]
  13. public class CanApproveBillsOfMaterials : EnabledSecurityDescriptor<ProjectManagementLicense, JobBillOfMaterials>
  14. {
  15. }
  16. [Caption("Approve Job Requisitions")]
  17. public class CanApproveJobRequisitions : EnabledSecurityDescriptor<ProjectManagementLicense, JobRequisition>
  18. {
  19. }
  20. [Caption("Change Dates on Document MileStones")]
  21. public class CanEditJobDocumentSetMileStoneDates : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  22. {
  23. }
  24. [Caption("View Web General Documents from App")]
  25. public class CanViewGeneralJobDocuments : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  26. {
  27. }
  28. [Caption("View Job Documents Mile Stone Files")]
  29. public class CanViewJobDocumentMileStoneFiles : EnabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  30. {
  31. }
  32. }