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