Ejemplo n.º 1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="fromScoreMetric">A FromScoreMetric</param>
 ///<param name="lowerCut">A LowerCut</param>
 ///<param name="upperCut">An UpperCut</param>
 ///<param name="derivedValue">A DerivedValue</param>
 ///
 public ScoreValue( AUCodeSetsAssessmentReportingMethodType fromScoreMetric, string lowerCut, string upperCut, DerivedValue derivedValue )
     : base(Sif3assessmentDTD.SCOREVALUE)
 {
     this.SetFromScoreMetric( fromScoreMetric );
     this.LowerCut = lowerCut;
     this.UpperCut = upperCut;
     this.DerivedValue = derivedValue;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="fromScoreMetric">A FromScoreMetric</param>
 ///<param name="lowerCut">A LowerCut</param>
 ///<param name="upperCut">An UpperCut</param>
 ///<param name="derivedValue">A DerivedValue</param>
 ///
 public ScoreValue(AUCodeSetsAssessmentReportingMethodType fromScoreMetric, string lowerCut, string upperCut, DerivedValue derivedValue) : base(Sif3assessmentDTD.SCOREVALUE)
 {
     this.SetFromScoreMetric(fromScoreMetric);
     this.LowerCut     = lowerCut;
     this.UpperCut     = upperCut;
     this.DerivedValue = derivedValue;
 }
Ejemplo n.º 3
0
 ///<summary>Adds the value of the <c>&lt;ScoreValue&gt;</c> element.</summary>
 /// <param name="FromScoreMetric">A FromScoreMetric</param>
 /// <param name="LowerCut">A LowerCut</param>
 /// <param name="UpperCut">An UpperCut</param>
 /// <param name="DerivedValue">A DerivedValue</param>
 ///<remarks>
 /// <para>This form of <c>setScoreValue</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddScoreValue</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void AddScoreValue(AUCodeSetsAssessmentReportingMethodType FromScoreMetric, string LowerCut, string UpperCut, DerivedValue DerivedValue)
 {
     AddChild(Sif3assessmentDTD.SCOREVALUELIST_SCOREVALUE, new ScoreValue(FromScoreMetric, LowerCut, UpperCut, DerivedValue));
 }