public void Remove() { if (_contacts != null) { _contacts.Delete(); } CleanupContactsObject(); }
public ActionResult Delete(int id, FormCollection collection) { try { address.Delete(id); return(RedirectToAction("Index")); } catch { return(View()); } }