/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">Code indicating the operational/administrative level.</param> /// public EducationAgencyType( EducationAgencyCode code ) : base(StudentDTD.EDUCATIONAGENCYTYPE) { this.SetCode( code ); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A EducationAgencyCode object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Code indicating the operational/administrative level."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetCode( EducationAgencyCode val ) { SetField( StudentDTD.EDUCATIONAGENCYTYPE_CODE, val ); }
///<summary>Sets the value of the <c><EducationAgencyType></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: 2.3</para> /// </remarks> public void SetEducationAgencyType(EducationAgencyCode Code) { RemoveChild(StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE); AddChild(StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE, new EducationAgencyType(Code)); }
///<summary>Sets the value of the <c><EducationAgencyType></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.5</para> /// <para>Since: 2.3</para> /// </remarks> public void SetEducationAgencyType( EducationAgencyCode Code ) { RemoveChild( StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE); AddChild( StudentDTD.LEAINFO_EDUCATIONAGENCYTYPE, new EducationAgencyType( Code ) ); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A EducationAgencyCode object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Code indicating the operational/administrative level."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetCode(EducationAgencyCode val) { SetField(StudentDTD.EDUCATIONAGENCYTYPE_CODE, val); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">Code indicating the operational/administrative level.</param> /// public EducationAgencyType(EducationAgencyCode code) : base(StudentDTD.EDUCATIONAGENCYTYPE) { this.SetCode(code); }