public ActionResult Add(CrueltySpotCategory crueltySpotCategory)
 {
     try
     {
         CrueltySpotCategoryService.Post(crueltySpotCategory);
         return RedirectToAction("Index", "CrueltySpotCategories");
     }
     catch (WebServiceException exception)
     {
         throw;
     }
 }
 public ActionResult Add()
 {
     var crueltySpotCategory = new CrueltySpotCategory();
     return View(crueltySpotCategory);
 }