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