Example #1
0
 public UserAnswerDTO(QuestionDTO Question, Boolean isChecked, Boolean isCorrect)
 {
     this.Question  = Question;
     this.isChecked = isChecked;
     this.isCorrect = isCorrect;
 }
Example #2
0
 public UserAnswerDTO(QuestionDTO questionDTO)
 {
     this.Question  = questionDTO;
     this.isChecked = false;
     this.isCorrect = true;
 }