Пример #1
0
        public ActionResult Createsurvey(PollViewModel Poll, string [] Questions)
        {
            bool result = _surveyManager.CreateSurvey(Poll, Questions);

            return(Content(result.ToString()));
        }