/// <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(); }
public QuestionGenerator(PropaideiaType propaideiaType, int questionNum) { this.propaideiaType = propaideiaType; this.questions = new List <Question>(questionNum); }