/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">A RefId</param>
 ///<param name="sectionItemSequenceType">A SectionItemSequenceType</param>
 ///
 public Sif3AssessmentSection(string refId, SectionItemSequenceType sectionItemSequenceType) : base(Adk.SifVersion, Sif3assessmentDTD.SIF3ASSESSMENTSECTION)
 {
     this.RefId = refId;
     this.SetSectionItemSequenceType(sectionItemSequenceType);
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">A RefId</param>
 ///<param name="sectionItemSequenceType">A SectionItemSequenceType</param>
 ///
 public Sif3AssessmentSection( string refId, SectionItemSequenceType sectionItemSequenceType )
     : base(Adk.SifVersion, Sif3assessmentDTD.SIF3ASSESSMENTSECTION)
 {
     this.RefId = refId;
     this.SetSectionItemSequenceType( sectionItemSequenceType );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;SectionItemSequenceType&gt;</c> element.
 /// </summary>
 /// <param name="val">A SectionItemSequenceType object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetSectionItemSequenceType(SectionItemSequenceType val)
 {
     SetField(Sif3assessmentDTD.SIF3ASSESSMENTSECTION_SECTIONITEMSEQUENCETYPE, val);
 }
 /// <summary>
 /// Sets the value of the <c>&lt;SectionItemSequenceType&gt;</c> element.
 /// </summary>
 /// <param name="val">A SectionItemSequenceType object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetSectionItemSequenceType( SectionItemSequenceType val )
 {
     SetField( Sif3assessmentDTD.SIF3ASSESSMENTSECTION_SECTIONITEMSEQUENCETYPE, val );
 }