Beispiel #1
0
        /// <summary>
        /// Creates a new question of the given type.
        /// </summary>
        /// <param name="propaideia">Type of the question.</param>
        public QuestionFG(PropaideiaType propaideia)
        {
            this.Propaideia = propaideia;

            GenerateQuestion();
        }
Beispiel #2
0
 public QuestionGenerator(PropaideiaType propaideiaType, int questionNum)
 {
     this.propaideiaType = propaideiaType;
     this.questions      = new List <Question>(questionNum);
 }