Example #1
0
 /// <summary>
 /// For convenience only
 /// </summary>
 public Answer(Survey survey, Question question, OfferedAnswer offeredAnswer, string otherText)
 {
     SurveyId        = survey.Id;
     QuestionId      = question.Id;
     OfferedAnswerId = offeredAnswer.Id;
     OtherText       = otherText;
 }
 /// <summary>
 /// For convenience only
 /// </summary>
 public SurveyQuestionAnswer(Survey survey, Question question, OfferedAnswer offeredAnswer)
 {
     SurveyId        = survey.Id;
     QuestionId      = question.Id;
     OfferedAnswerId = offeredAnswer.Id;
 }