Exemple #1
0
 ///<summary>Sets the value of the <c>&lt;ExitType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090</param>
 ///<remarks>
 /// <para>This form of <c>setExitType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetExitType(LeavingReason Code)
 {
     RemoveChild(LearnerDTD.LEARNERSCHOOLENROLMENT_EXITTYPE);
     AddChild(LearnerDTD.LEARNERSCHOOLENROLMENT_EXITTYPE, new ExitType(Code));
 }
Exemple #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A LeavingReason object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetCode( LeavingReason val )
 {
     SetField( LearnerDTD.EXITTYPE_CODE, val );
 }
Exemple #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090</param>
 ///
 public ExitType( LeavingReason code )
     : base(LearnerDTD.EXITTYPE)
 {
     this.SetCode( code );
 }
 ///<summary>Sets the value of the <c>&lt;ExitType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090</param>
 ///<remarks>
 /// <para>This form of <c>setExitType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetExitType( LeavingReason Code )
 {
     RemoveChild( LearnerDTD.LEARNERSCHOOLENROLMENT_EXITTYPE);
     AddChild( LearnerDTD.LEARNERSCHOOLENROLMENT_EXITTYPE, new ExitType( Code ) );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;ExitType&gt;</c> element.
 /// </summary>
 /// <param name="val">A LeavingReason object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of exit from this school or establishment."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetExitType( LeavingReason val )
 {
     SetField( LearnerDTD.PREVIOUSESTABLISHMENT_EXITTYPE, val );
 }
Exemple #6
0
 /// <summary>
 /// Sets the value of the <c>&lt;ExitType&gt;</c> element.
 /// </summary>
 /// <param name="val">A LeavingReason object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of exit from this school or establishment."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetExitType(LeavingReason val)
 {
     SetField(LearnerDTD.PREVIOUSESTABLISHMENT_EXITTYPE, val);
 }
Exemple #7
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A LeavingReason object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetCode(LeavingReason val)
 {
     SetField(LearnerDTD.EXITTYPE_CODE, val);
 }
Exemple #8
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of exit for this enrolment. CBDS: 100244, 100318, 190090</param>
 ///
 public ExitType(LeavingReason code) : base(LearnerDTD.EXITTYPE)
 {
     this.SetCode(code);
 }