Esempio n. 1
0
 public TextValueQuestion(IQuestionParent parent, TextValueQuestion original)
     : base(parent, original)
 {
     this.DefaultValue = original.DefaultValue;
     this.LowerBound   = original.LowerBound;
     this.UpperBound   = original.UpperBound;
 }
Esempio n. 2
0
 public TextValueResponse(Response response, ResponseGroup parent, TextValueQuestion question, string responseValue)
 {
     // TODO: Complete member initialization
     this.Response      = response;
     this.Parent        = parent;
     this.Question      = question;
     this.ResponseValue = responseValue;
 }