public ActionResult Delete(int id, Dog dog) { try { _dogRepo.DeletDog(id); return(RedirectToAction("Index")); } catch (Exception ex) { return(View(dog)); } }