/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">The GUID that identifies this school.</param> ///<param name="schoolName">Name of school/campus.</param> ///<param name="schoolSector">(Government, or Non-Government).</param> /// public SchoolInfo( string refId, string schoolName, SchoolSectorCodeType schoolSector ) : base(Adk.SifVersion, SchoolDTD.SCHOOLINFO) { this.RefId = refId; this.SchoolName = schoolName; this.SetSchoolSector( schoolSector ); }
/// <summary> /// Sets the value of the <c><SchoolSector></c> element. /// </summary> /// <param name="val">A SchoolSectorCodeType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "(Government, or Non-Government)."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetSchoolSector(SchoolSectorCodeType val) { SetField(SchoolDTD.SCHOOLINFO_SCHOOLSECTOR, val); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">The GUID that identifies this school.</param> ///<param name="schoolName">Name of school/campus.</param> ///<param name="schoolSector">(Government, or Non-Government).</param> /// public SchoolInfo(string refId, string schoolName, SchoolSectorCodeType schoolSector) : base(Adk.SifVersion, SchoolDTD.SCHOOLINFO) { this.RefId = refId; this.SchoolName = schoolName; this.SetSchoolSector(schoolSector); }
/// <summary> /// Sets the value of the <c><SchoolSector></c> element. /// </summary> /// <param name="val">A SchoolSectorCodeType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "(Government, or Non-Government)."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetSchoolSector( SchoolSectorCodeType val ) { SetField( SchoolDTD.SCHOOLINFO_SCHOOLSECTOR, val ); }