public QuizRoomsController(QuizzoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #2
0
 public ParticipantsController(QuizzoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #3
0
 public ResponsesController(QuizzoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #4
0
 public AnswersController(QuizzoContext context)
 {
     _context = context;
 }