コード例 #1
0
 public ClearShiftsDayOrchestrator(ClearScheduleOptions options)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
 }
コード例 #2
0
 public ClearOpenShiftsActivity(ClearScheduleOptions options, ITeamsService teamsService)
 {
     _options      = options ?? throw new ArgumentNullException(nameof(options));
     _teamsService = teamsService ?? throw new ArgumentNullException(nameof(teamsService));
 }
 public ClearShiftsActivity(ClearScheduleOptions options, IScheduleDestinationService scheduleDestinationService)
 {
     _options = options ?? throw new ArgumentNullException(nameof(options));
     _scheduleDestinationService = scheduleDestinationService ?? throw new ArgumentNullException(nameof(scheduleDestinationService));
 }