public async Task <IActionResult> AddTournament(AddTournamentDto newTournament) // Add Tournament
 {
     return(Ok(await _tournamentService.AddTournamants(newTournament)));
 }