コード例 #1
0
        private Survey CreateFakeSurvey()
        {
            var survey = new Survey("Customer Satisfaction Survey");

            //Add Questions
            survey.AddScaleQuestion("How likely is it that you would recommend this company to a friend or colleague ?", 10);
            survey.AddMultipleChoiceQuestion(
                "Overall, how satisfied or dissatisfied are you with our company ?",
                "Very Satisfied",
                "Somewhat Satisfied",
                "Somewhat dissatisfied",
                "Very dissatisfied"
                );
            //survey.AddMultiSelectQuestion("Which of the following words would you use to describe our products? Select all that apply.");
            survey.AddMultipleChoiceQuestion(
                "How well do our products meet your needs?",
                "Very Satisfied",
                "Somewhat Satisfied",
                "Somewhat dissatisfied",
                "Very dissatisfied"
                );

            survey.AddTextQuestion("Do you have any other comments, questions, or concerns?");

            return(survey);
        }