Ejemplo n.º 1
0
 public Question(int points, string answer, string content, QuestionContentType type, Category category, string variant1, string variant2, string variant3, string variant4)
 {
     Points   = points;
     Answer   = answer;
     Content  = content;
     Type     = type;
     Category = category;
     Variant1 = variant1;
     Variant2 = variant2;
     Variant3 = variant3;
     Variant4 = variant4;
 }
Ejemplo n.º 2
0
 public void SetQuestionContentType(QuestionContentType questionContentType)
 {
     TInfo.QuestionContentType = questionContentType;
 }