///<summary>Sets the value of the <c>&lt;ExitStatus&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the closure status for this enrollment.</param>
 ///<remarks>
 /// <para>This form of <c>setExitStatus</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitStatus</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetExitStatus( AU0643ExitWithdrawalStatusType Code )
 {
     RemoveChild( StudentDTD.STUDENTSCHOOLENROLLMENT_EXITSTATUS);
     AddChild( StudentDTD.STUDENTSCHOOLENROLLMENT_EXITSTATUS, new ExitStatus( Code ) );
 }
Esempio n. 2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AU0643ExitWithdrawalStatusType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the closure status for this enrollment."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode(AU0643ExitWithdrawalStatusType val)
 {
     SetField(StudentDTD.EXITSTATUS_CODE, val);
 }
Esempio n. 3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the closure status for this enrollment.</param>
 ///
 public ExitStatus(AU0643ExitWithdrawalStatusType code) : base(StudentDTD.EXITSTATUS)
 {
     this.SetCode(code);
 }
Esempio n. 4
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the closure status for this enrollment.</param>
 ///
 public ExitStatus( AU0643ExitWithdrawalStatusType code )
     : base(StudentDTD.EXITSTATUS)
 {
     this.SetCode( code );
 }
Esempio n. 5
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AU0643ExitWithdrawalStatusType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the closure status for this enrollment."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode( AU0643ExitWithdrawalStatusType val )
 {
     SetField( StudentDTD.EXITSTATUS_CODE, val );
 }
Esempio n. 6
0
 ///<summary>Sets the value of the <c>&lt;ExitStatus&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the closure status for this enrollment.</param>
 ///<remarks>
 /// <para>This form of <c>setExitStatus</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>ExitStatus</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetExitStatus(AU0643ExitWithdrawalStatusType Code)
 {
     RemoveChild(StudentDTD.STUDENTSCHOOLENROLLMENT_EXITSTATUS);
     AddChild(StudentDTD.STUDENTSCHOOLENROLLMENT_EXITSTATUS, new ExitStatus(Code));
 }