public JsonResult GetSkater(int id, [FromQuery] StatParametersDto statParametersDto)
        {
            WebsiteService service = new WebsiteService();
            var            dto     = service.GetPlayerSkaterTable(id, statParametersDto);

            return(new JsonResult(dto));
        }