Exemple #1
0
 public CalendarRepository(ICalendarContext context)
 {
     _context = context;
 }
 public BaseContext(ICalendarContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
 public DeleteTimeslotHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Exemple #4
0
 public AttachStudentToTeamHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
 public CreateTimeSlotHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Exemple #6
0
 public CreateBookingHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
 public AttachTeachersToCalendarHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
 public UpdateCalendarHandler(ICalendarContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }