public void AddProductToCategory(int categoryId, int productId)
 {
     using (DelightServiceClient service = new DelightServiceClient())
     {
         service.AddProductToCategory(categoryId, productId);
     }
 }