public ActionResult Edit(int id)
        {
            Contact c1 = repo.GetContactById(id);

            return(View("Index", c1));
        }