public void InsertAddressAt(AddressType newValue, int index) { InsertDomElementAt("", "Address", index, newValue); }
public void ReplaceAddressAt(AddressType newValue, int index) { ReplaceDomElementAt("", "Address", index, newValue); }
public XmlNode AddAddress(AddressType newValue) { return AppendDomElement("", "Address", newValue); }