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

            ViewBag.GoTCharacterList = goTApiController.Get();
            return(View());
        }
        public ActionResult ViewCharacterSheet(string name)
        {
            GoTApiController goTApiController = new GoTApiController();
            var character = goTApiController.GetCharacter(name);

            return(View(character));
        }
        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));
        }