public ActionResult Delete(int id)
 {
     repo.DeleteContact(id);
     return(RedirectToAction("Index"));
 }