public IActionResult GetList([FromQuery] ProductCategoryListInput input)
 {
     return(Ok(_productCateService
               .GetSortedFilteredList(input, out var itemCount)
               .Select(ProductCategoryListViewModel.GetFromProductCategory)
               .ToPagedResults(resultCount: itemCount)));
 }