Exemplo n.º 1
0
 /// <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 );
 }
Exemplo n.º 2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</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 );
 }
Exemplo n.º 3
0
 /// <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);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</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);
 }
Exemplo n.º 5
0
 ///<summary>Adds the value of the <c>&lt;AcademicSubject&gt;</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));
 }