Example #1
0
 public TimeslotController(
     ILogger <TimeslotController> logger,
     ITimeslotService timeslotService)
 {
     this.logger          = logger;
     this.timeslotService = timeslotService;
 }
Example #2
0
 public SessionService(ApplicationDataContext context, ITimeslotService timeslotService) : base(context)
 {
     _timeslotService = timeslotService;
 }
Example #3
0
 public TimeslotController(IMapper mapper, ITimeslotService timeslotService) : base(mapper)
 {
     _timeslotService = timeslotService;
 }