コード例 #1
0
        public async Task <IActionResult> Get(int id)
        {
            var tournament = await _roundService.Get(id);

            return(Json(Mapper.Map <Round, RoundViewModel>(tournament)));
        }