public async Task <IActionResult> Get(int id) { var tournament = await _roundService.Get(id); return(Json(Mapper.Map <Round, RoundViewModel>(tournament))); }