// GET: Animal/Edit/
 public ActionResult Edit(int id)
 {
     return(View("FormAnimal", repo.Get(id)));
 }