// GET: TournamentsController/Details/5
        public async Task <ActionResult> Details(int id)
        {
            var tournament = _mapper.Map <TournamentDetailsViewModel>(await _tournamentService.GetByIdAsync(id));

            tournament.Teams = await _tournamentService.GetTeams(tournament.Id);

            return(View(tournament));
        }