Ejemplo n.º 1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code representing the medium of instruction.</param>
 ///
 public MediumOfInstruction(MediumOfInstructionCode code) : base(StudentDTD.MEDIUMOFINSTRUCTION)
 {
     this.SetCode(code);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A MediumOfInstructionCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code representing the medium of instruction."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode(MediumOfInstructionCode val)
 {
     SetField(StudentDTD.MEDIUMOFINSTRUCTION_CODE, val);
 }
Ejemplo n.º 3
0
 ///<summary>Sets the value of the <c>&lt;MediumOfInstruction&gt;</c> element.</summary>
 /// <param name="Code">Code representing the medium of instruction.</param>
 ///<remarks>
 /// <para>This form of <c>setMediumOfInstruction</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>MediumOfInstruction</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetMediumOfInstruction(MediumOfInstructionCode Code)
 {
     RemoveChild(StudentDTD.SECTIONINFO_MEDIUMOFINSTRUCTION);
     AddChild(StudentDTD.SECTIONINFO_MEDIUMOFINSTRUCTION, new MediumOfInstruction(Code));
 }
Ejemplo n.º 4
0
 ///<summary>Sets the value of the <c>&lt;MediumOfInstruction&gt;</c> element.</summary>
 /// <param name="Code">Code representing the medium of instruction.</param>
 ///<remarks>
 /// <para>This form of <c>setMediumOfInstruction</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>MediumOfInstruction</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.4</para>
 /// </remarks>
 public void SetMediumOfInstruction( MediumOfInstructionCode Code )
 {
     RemoveChild( EtranscriptsDTD.SECTIONINFODATA_MEDIUMOFINSTRUCTION);
     AddChild( EtranscriptsDTD.SECTIONINFODATA_MEDIUMOFINSTRUCTION, new MediumOfInstruction( Code ) );
 }
Ejemplo n.º 5
0
 ///<summary>Sets the value of the <c>&lt;MediumOfInstruction&gt;</c> element.</summary>
 /// <param name="Code">Code representing the medium of instruction.</param>
 ///<remarks>
 /// <para>This form of <c>setMediumOfInstruction</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>MediumOfInstruction</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetMediumOfInstruction( MediumOfInstructionCode Code )
 {
     RemoveChild( StudentDTD.SECTIONINFO_MEDIUMOFINSTRUCTION);
     AddChild( StudentDTD.SECTIONINFO_MEDIUMOFINSTRUCTION, new MediumOfInstruction( Code ) );
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code representing the medium of instruction.</param>
 ///
 public MediumOfInstruction( MediumOfInstructionCode code )
     : base(StudentDTD.MEDIUMOFINSTRUCTION)
 {
     this.SetCode( code );
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A MediumOfInstructionCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code representing the medium of instruction."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode( MediumOfInstructionCode val )
 {
     SetField( StudentDTD.MEDIUMOFINSTRUCTION_CODE, val );
 }