コード例 #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the operational/administrative level.</param>
 ///
 public EducationAgencyType( EducationAgencyTypeCode code )
     : base(StudentDTD.EDUCATIONAGENCYTYPE)
 {
     this.SetCode( code );
 }
コード例 #2
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EducationAgencyTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the operational/administrative level."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode( EducationAgencyTypeCode val )
 {
     SetField( StudentDTD.EDUCATIONAGENCYTYPE_CODE, val );
 }
コード例 #3
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EducationAgencyTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Code indicating the operational/administrative level."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode(EducationAgencyTypeCode val)
 {
     SetField(StudentDTD.EDUCATIONAGENCYTYPE_CODE, val);
 }
コード例 #4
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Code indicating the operational/administrative level.</param>
 ///
 public EducationAgencyType(EducationAgencyTypeCode code) : base(StudentDTD.EDUCATIONAGENCYTYPE)
 {
     this.SetCode(code);
 }
コード例 #5
0
ファイル: LEAInfo.cs プロジェクト: rubitek/OpenADK-csharp
 ///<summary>Sets the value of the <c>&lt;EducationAgencyType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the operational/administrative level.</param>
 ///<remarks>
 /// <para>This form of <c>setEducationAgencyType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EducationAgencyType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEducationAgencyType(EducationAgencyTypeCode Code)
 {
     RemoveChild(StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE);
     AddChild(StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE, new EducationAgencyType(Code));
 }
コード例 #6
0
ファイル: LEAInfo.cs プロジェクト: rafidzal/OpenADK-csharp
 ///<summary>Sets the value of the <c>&lt;EducationAgencyType&gt;</c> element.</summary>
 /// <param name="Code">Code indicating the operational/administrative level.</param>
 ///<remarks>
 /// <para>This form of <c>setEducationAgencyType</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EducationAgencyType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEducationAgencyType( EducationAgencyTypeCode Code )
 {
     RemoveChild( StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE);
     AddChild( StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE, new EducationAgencyType( Code ) );
 }