public ActionResult ThankYou()
        {
            var model = new TenantMasterPageViewData {
                Title = "Thank you for filling the survey"
            };

            return(this.View(model));
        }
        public ActionResult Join()
        {
            var model = new TenantMasterPageViewData {
                Title = "Join Tailspin"
            };

            return(this.View(model));
        }