public void ReplaceCityAt(CityType newValue, int index) { ReplaceDomElementAt("", "City", index, newValue); }
public void InsertCityAt(CityType newValue, int index) { InsertDomElementAt("", "City", index, newValue); }
public XmlNode AddCity(CityType newValue) { return AppendDomElement("", "City", newValue); }
public XmlNode AddCity(CityType newValue) { return(AppendDomElement("", "City", newValue)); }