Example #1
0
 public GetUserParticipationTokenHandler(IReadParticipationRepository readParticipationRepository,
                                         ICurrentUserService currentUserService, ITokenService tokenService)
 {
     _readParticipationRepository = readParticipationRepository;
     _currentUserService          = currentUserService;
     _tokenService = tokenService;
 }
Example #2
0
 public ConnectUserToParticipationHandler(
     IParticipationsSessionsRepository participationsSessionsRepository, ICurrentUserService currentUserService,
     IDispatcher <PrepareParticipationExecutionDto> prepareParticipationExecutionService,
     IReadParticipationRepository readParticipationRepository)
 {
     _participationsSessionsRepository = participationsSessionsRepository;
     _currentUserService = currentUserService;
     _prepareParticipationExecutionService = prepareParticipationExecutionService;
     _readParticipationRepository          = readParticipationRepository;
 }
 public DisconnectUserFromParticipationHandler(
     IParticipationsSessionsRepository participationsSessionsRepository, ICurrentUserService currentUserService,
     IReadParticipationRepository readParticipationRepository,
     IDispatcher <CleanParticipationExecutionDto> cleanParticipationExecutionService)
 {
     _participationsSessionsRepository = participationsSessionsRepository;
     _currentUserService                 = currentUserService;
     _readParticipationRepository        = readParticipationRepository;
     _cleanParticipationExecutionService = cleanParticipationExecutionService;
 }
 public CreateParticipationHandler(IParticipationRepository participationRepository,
                                   IReadTournamentRepository readTournamentRepository, IReadStepRepository readStepRepository,
                                   IReadTeamRepository readTeamRepository, ITimeService timeService,
                                   IReadParticipationRepository readParticipationRepository)
 {
     _participationRepository  = participationRepository;
     _readTournamentRepository = readTournamentRepository;
     _readStepRepository       = readStepRepository;
     _readTeamRepository       = readTeamRepository;
     _timeService = timeService;
     _readParticipationRepository = readParticipationRepository;
 }
 public GetOneParticipationByTeamTournamentAndStepHandler(
     IReadParticipationRepository readParticipationRepository)
 {
     _readParticipationRepository = readParticipationRepository;
 }
 public GetOneParticipationNavigationByIdHandler(IReadParticipationRepository readParticipationRepository)
 {
     _readParticipationRepository = readParticipationRepository;
 }