public ActionResult Delete(int id)
        {
            DAL dal = new DAL();
            Contact contact = dal.GetContactByID(id);

            return View(contact);
        }