Ejemplo n.º 1
0
 ///<summary>Sets the value of the <c>&lt;SchoolContactList&gt;</c> element.</summary>
 /// <param name="Contact">Information on contact persons for this school or LA.</param>
 ///<remarks>
 /// <para>This form of <c>setSchoolContactList</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>SchoolContactList</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetSchoolContactList( Contact Contact )
 {
     RemoveChild( SchoolDTD.SCHOOLINFO_SCHOOLCONTACTLIST);
     AddChild( SchoolDTD.SCHOOLINFO_SCHOOLCONTACTLIST, new ContactList( Contact ) );
 }
Ejemplo n.º 2
0
 ///<summary>Sets the value of the <c>&lt;LAContactList&gt;</c> element.</summary>
 /// <param name="Contact">Information on contact persons for this school or LA.</param>
 ///<remarks>
 /// <para>This form of <c>setLAContactList</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>LAContactList</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetLAContactList( Contact Contact )
 {
     RemoveChild( SchoolDTD.LAINFO_LACONTACTLIST);
     AddChild( SchoolDTD.LAINFO_LACONTACTLIST, new ContactList( Contact ) );
 }