/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">A code to depict an academic or vocational discipline studied by an individual in an educational program (based on NCES CIP 2000).</param> /// public AcademicSubject( PostsecondarySubjectMatterAreaType code ) : base(EtranscriptsDTD.ACADEMICSUBJECT) { this.SetCode( code ); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A PostsecondarySubjectMatterAreaType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "A code to depict an academic or vocational discipline studied by an individual in an educational program (based on NCES CIP 2000)."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.2</para> /// </remarks> public void SetCode( PostsecondarySubjectMatterAreaType val ) { SetField( EtranscriptsDTD.ACADEMICSUBJECT_CODE, val ); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">A code to depict an academic or vocational discipline studied by an individual in an educational program (based on NCES CIP 2000).</param> /// public AcademicSubject(PostsecondarySubjectMatterAreaType code) : base(EtranscriptsDTD.ACADEMICSUBJECT) { this.SetCode(code); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A PostsecondarySubjectMatterAreaType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "A code to depict an academic or vocational discipline studied by an individual in an educational program (based on NCES CIP 2000)."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.2</para> /// </remarks> public void SetCode(PostsecondarySubjectMatterAreaType val) { SetField(EtranscriptsDTD.ACADEMICSUBJECT_CODE, val); }
///<summary>Adds the value of the <c><AcademicSubject></c> element.</summary> /// <param name="Code">A code to depict an academic or vocational discipline studied by an individual in an educational program (based on NCES CIP 2000).</param> ///<remarks> /// <para>This form of <c>setAcademicSubject</c> is provided as a convenience method /// that is functionally equivalent to the method <c>AddAcademicSubject</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.2</para> /// </remarks> public void AddAcademicSubject(PostsecondarySubjectMatterAreaType Code) { AddChild(EtranscriptsDTD.ACADEMICSUBJECTS_ACADEMICSUBJECT, new AcademicSubject(Code)); }