public ActionResult Details(int id)
        {
            if (!_projectLogic.ProjectExists(id))
            {
                return(HttpNotFound("Project does not exist"));
            }

            return(View(GetProject(id)));
        }