コード例 #1
0
        public JsonResult GetGoalie(int id, [FromQuery] StatParametersDto statParametersDto)
        {
            WebsiteService service = new WebsiteService();
            var            dto     = service.GetPlayerGoalieTable(id, statParametersDto);

            return(new JsonResult(dto));
        }