public ActionResult Survey(string parkCode, string email, string state, string activityLevel)
        {
            Survey survey = new Survey
            {
                ParkCode      = parkCode,
                EmailAddress  = email,
                State         = state,
                ActivityLevel = activityLevel
            };

            sDal.InsertSurveyIntoTable(survey);
            return(RedirectToAction("SurveyResult"));
        }