Пример #1
0
 public AddBetterToTournamentHandler(
     UserRepositoryInterface userRepository,
     TournamentRepositoryInterface tournamentRepository)
 {
     _userRepository       = userRepository;
     _tournamentRepository = tournamentRepository;
 }
Пример #2
0
 public AddRoundToTournamentHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #3
0
 public SwitchPlacesOfTwoPlayersWithinRoundHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #4
0
 public RemovePlayerFromTournamentHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #5
0
 public BetterPlaceBetOnMatchHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #6
0
 public GetTournamentByIdHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #7
0
 public RenamePlayerInTournamentHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #8
0
 public AddScoreToPlayerInMatchHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #9
0
 public CreateTournamentHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #10
0
 public ChangeBestOfInMatchHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #11
0
 public ChangeAdvancingPerGroupCountInRoundHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #12
0
 public GetAllTournamentsHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #13
0
 public AddPlayerToTournamentHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #14
0
 public SelectPlayerThatAdvancesDuringProblematicTimeHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #15
0
 public ChangeStartTimeOfMatchHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }
Пример #16
0
 public ChangeGroupSizeInRoundHandler(TournamentRepositoryInterface tournamentRepository)
 {
     _tournamentRepository = tournamentRepository;
 }