Inheritance: AnswerBase
コード例 #1
0
ファイル: Question.cs プロジェクト: Christoph/evalution
 public virtual void AddTextAnswer(TextAnswer textAnswer)
 {
     textAnswer.Question = this;
     TextAnswers.Add(textAnswer);
 }
コード例 #2
0
 public TextAnswerViewModel(TextAnswer textAnswer)
 {
     mTextAnswer = textAnswer;
 }
コード例 #3
0
ファイル: Form.cs プロジェクト: Christoph/evalution
 public virtual void AddTextAnswer(TextAnswer textAnswer)
 {
     textAnswer.Form = this;
     TextAnswers.Add(textAnswer);
 }