public IActionResult Get()
 {
     return(Ok(_roundService.GetAllRoundFromATournament(17)));
 }
Пример #2
0
 public ActionResult GetTournamentDetails(int tournamentId)
 {
     return(Ok(_roundService.GetAllRoundFromATournament(tournamentId)));
 }