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