public ActionResult GetAllRoundInTournament(int id) { var result = _roundService.GetAllRoundPairingInTournament(id); var rounds = Mapper.Map <IEnumerable <Round>, IEnumerable <RoundViewModel> >(result); return(PartialView(rounds)); }