public ActionResult Rsvp()
        {
            GoTApiController goTApiController = new GoTApiController();

            ViewBag.GoTCharacterList = goTApiController.Get();
            return(View());
        }
        public ActionResult EditGuest(int GuestID)
        {
            GoTApiController goTApiController = new GoTApiController();

            ViewBag.GoTCharacterList = goTApiController.Get();

            ShahPartyDBEntities Orm = new ShahPartyDBEntities();
            Guest found             = Orm.Guests.Find(GuestID);

            return(View(found));
        }