public ActionResult Details(int id = 0)
        {
            //Our keys in the UserProfile and User table are off by one
            //This is the solution because deleting the contents of the DB didn't help

            UserRepository ur = new UserRepository();
            User user = ur.GetUser(id);
            if (user == null)
            {
                return HttpNotFound();
            }
            return View(user);
        }