public ActionResult DeleteConfirmed(int id)
        {
            DAL dal = new DAL();
            dal.RemoveContactByID(id);

            return RedirectToAction("Index");
        }