Example #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of entry for this enrollment</param>
 ///
 public EntryType( AU0619EntryType code )
     : base(StudentDTD.ENTRYTYPE)
 {
     this.SetCode( code );
 }
Example #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AU0619EntryType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of entry for this enrollment"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode( AU0619EntryType val )
 {
     SetField( StudentDTD.ENTRYTYPE_CODE, val );
 }
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetEntryType( AU0619EntryType Code )
 {
     RemoveChild( StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE);
     AddChild( StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE, new EntryType( Code ) );
 }
Example #4
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AU0619EntryType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code indicating the type of entry for this enrollment"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode(AU0619EntryType val)
 {
     SetField(StudentDTD.ENTRYTYPE_CODE, val);
 }
Example #5
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the type of entry for this enrollment</param>
 ///
 public EntryType(AU0619EntryType code) : base(StudentDTD.ENTRYTYPE)
 {
     this.SetCode(code);
 }
Example #6
0
 ///<summary>Sets the value of the <c>&lt;EntryType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the type of entry for this enrollment</param>
 ///<remarks>
 /// <para>This form of <c>setEntryType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EntryType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetEntryType(AU0619EntryType Code)
 {
     RemoveChild(StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE);
     AddChild(StudentDTD.STUDENTSCHOOLENROLLMENT_ENTRYTYPE, new EntryType(Code));
 }