Exemple #1
0
        public async Task <IActionResult> GetByTournamentAndGambler(int tournamentId, int gamblerId)
        {
            var rounds = await _roundService.GetByTournamentAndGambler(tournamentId, gamblerId);

            return(Json(rounds));
        }