DailyReport_Descriptors.cs 806 B

123456789101112131415161718192021222324
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("View Daily Reports Screen")]
  5. public class CanViewDailyReports : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>
  6. {
  7. }
  8. [Caption("Use PRS even if outstanding Daily Reports exist")]
  9. public class BypassOutstandingDailyReports : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>
  10. {
  11. }
  12. [Caption("Require Activity Codes on all Daily Reports")]
  13. public class RequireActivityCodesOnDailyReports : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>
  14. {
  15. }
  16. [Caption("Can Track Tasks in Daily Reports")]
  17. public class CanTrackTasksInDailyReport : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>
  18. {
  19. }
  20. }