コード例 #1
0
 public IntegerValueResponse(Response response, ResponseGroup parent, IntegerValueQuestion question, int responseValue)
 {
     this.Response      = response;
     this.Parent        = parent;
     this.Question      = question;
     this.ResponseValue = responseValue;
 }
コード例 #2
0
 public IntegerValueQuestion(IQuestionParent parent, IntegerValueQuestion original)
     : base(parent, original)
 {
     base.DefaultValue = original.DefaultValue;
     base.LowerBound   = original.LowerBound;
     base.UpperBound   = original.UpperBound;
 }