Example #1
0
 public TimeSlotsController(
     ITimeSlotOrchestrator timeSlotOrchestrator,
     IQueueOrchestrator queueOrchestrator,
     ITimeSlotProcessService timeSlotProcessService)
 {
     _timeSlotOrchestrator   = timeSlotOrchestrator;
     _queueOrchestrator      = queueOrchestrator;
     _timeSlotProcessService = timeSlotProcessService;
 }
Example #2
0
 public TimeSlotProcessService(ITimeSlotOrchestrator timeSlotOrchestrator)
 {
     _timeSlotOrchestrator = timeSlotOrchestrator;
 }