public async Task <IActionResult> GetByTournamentAndGambler(int tournamentId, int gamblerId) { var rounds = await _roundService.GetByTournamentAndGambler(tournamentId, gamblerId); return(Json(rounds)); }