| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | using InABox.Core;namespace Comal.Classes{    [Caption("Change Timesheet Start/Finish Times")]    public class CanChangeStartFinishTimes : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>    {    }    [Caption("Approve Timesheets")]    public class CanApproveTimesheets : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>    {    }    [Caption("Archive Timesheets")]    public class CanArchiveTimesheets : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>    {    }    [Caption("Approve Leave Requests")]    public class CanApproveLeaveRequests : EnabledSecurityDescriptor<HumanResourcesLicense, LeaveRequest>    {    }    [Caption("View Org Charts (Employee)")]    [SecurityDescriptorScope(SecurityDescriptorScope.Global)]    public class CanViewOrgChartByEmployee : EnabledSecurityDescriptor<HumanResourcesLicense, Employee>    {    }    [Caption("View Org Charts (Position)")]    [SecurityDescriptorScope(SecurityDescriptorScope.Global)]    public class CanViewOrgChartByPosition : EnabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeePosition>    {    }    [Caption("View Org Charts (Job Role)")]    [SecurityDescriptorScope(SecurityDescriptorScope.Global)]    public class CanViewOrgChartByRole : EnabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeeRole>    {    }    [Caption("Edit Org Chart Structure")]    public class CanEditOrgChart : EnabledSecurityDescriptor<HumanResourcesLicense, Employee>    {    }    [Caption("View User Passwords")]    public class CanViewPasswords : DisabledSecurityDescriptor<HumanResourcesLicense, User>    {    }    [Caption("Allow Timesheet Midnight Rollover")]    public class AllowTimeSheetRollover : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>    {    }    [SecurityDescriptorScope(SecurityDescriptorScope.Global)]    [Caption("Allow Split Shifts in Employee Rosters")]    public class AllowEmployeeRosterSplitShifts : DisabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeeRoster>    {    }    [Caption("View Public Holidays On Mobile")]    public class CanViewPublicHolidaysOnMobile : DisabledSecurityDescriptor<HumanResourcesLicense, StandardLeave>    {    }    [Caption("Send Mobile Phone Credentials")]    public class CanCreateMobilePhoneCredentialLinks : DisabledSecurityDescriptor<HumanResourcesLicense, User>    {    }    [Caption("View Mobile In Out Board Details")]    public class CanViewMobileInOutBoardDetails : DisabledSecurityDescriptor<HumanResourcesLicense, User>    {    }}
 |