public IEnumerable<ProductFromCategoryDTO> GetAllProductsCompareToSpecificCategory(int categoryId)
 {
     using (DelightServiceClient service = new DelightServiceClient())
     {
         var products = service.GetAllProductsCompareToSpecificCategory(categoryId);
         return products;
     }
 }