public GetOneParticipationSessionFunctionHandler(IReadFunctionSessionRepository readFunctionSessionRepository,
                                                  IReadParticipationSessionRepository readParticipationSessionRepository)
 {
     _readFunctionSessionRepository      = readFunctionSessionRepository;
     _readParticipationSessionRepository = readParticipationSessionRepository;
 }
Example #2
0
 public GetOneParticipationSessionUserHandler(IReadUserSessionRepository readUserSessionRepository,
                                              IReadParticipationSessionRepository readParticipationSessionRepository)
 {
     _readUserSessionRepository          = readUserSessionRepository;
     _readParticipationSessionRepository = readParticipationSessionRepository;
 }
Example #3
0
 public GetOneParticipationSessionNavigationByIdHandler(
     IReadParticipationSessionRepository readParticipationSessionRepository)
 {
     _readParticipationSessionRepository = readParticipationSessionRepository;
 }