コード例 #1
0
 public EmployeeTokenRefreshOrchestrator(TeamOrchestratorOptions options)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
 }
コード例 #2
0
 public CancelOpenShiftRequestHandler(TeamOrchestratorOptions teamOptions, FeatureOptions featureOptions, IScheduleConnectorService scheduleConnectorService, IScheduleCacheService scheduleCacheService, IRequestCacheService requestCacheService, ISecretsService secretsService, IStringLocalizer <ChangeRequestTrigger> stringLocalizer, ICacheService cacheService, IWfmActionService wfmActionService)
     : base(teamOptions, featureOptions, scheduleConnectorService, scheduleCacheService, requestCacheService, secretsService, stringLocalizer, cacheService, wfmActionService)
 {
 }
コード例 #3
0
 public ClearScheduleOrchestrator(FeatureOptions featureOptions, TeamOrchestratorOptions options)
 {
     _featureOptions = featureOptions ?? throw new ArgumentNullException(nameof(featureOptions));
     _options        = options ?? throw new ArgumentNullException(nameof(options));
 }
 public AvailabilityOrchestrator(TeamOrchestratorOptions options, FeatureOptions featureOptions)
 {
     _options        = options ?? throw new ArgumentNullException(nameof(options));
     _featureOptions = featureOptions ?? throw new ArgumentNullException(nameof(featureOptions));
 }
 public ClearScheduleTrigger(TeamOrchestratorOptions options, ISystemTimeService timeService, IScheduleConnectorService scheduleConnectorService)
 {
     _options     = options ?? throw new System.ArgumentNullException(nameof(options));
     _timeService = timeService ?? throw new ArgumentNullException(nameof(timeService));
     _scheduleConnectorService = scheduleConnectorService ?? throw new ArgumentNullException(nameof(scheduleConnectorService));
 }
 public ClearCacheActivity(TeamOrchestratorOptions options, IScheduleCacheService scheduleCacheService, IScheduleDestinationService scheduleDestinationService)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
     _scheduleCacheService       = scheduleCacheService ?? throw new ArgumentNullException(nameof(scheduleCacheService));
     _scheduleDestinationService = scheduleDestinationService ?? throw new ArgumentNullException(nameof(scheduleDestinationService));
 }
 public ShiftsOrchestrator(TeamOrchestratorOptions options)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
 }
コード例 #8
0
 public ClearScheduleOrchestrator(TeamOrchestratorOptions options)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
 }
コード例 #9
0
 public OpenShiftsOrchestrator(FeatureOptions featureOptions, TeamOrchestratorOptions options)
 {
     _featureOptions = featureOptions ?? throw new ArgumentNullException(nameof(featureOptions));
     _options        = options ?? throw new ArgumentNullException(nameof(options));
 }