public override void Initialize() { base.Initialize(); this._BasicStreet = ""; this._PostalCode = ""; this._DetailAddress = ""; this._CoCity = new CountryDivision(); this._CoProvince = new CountryDivision(); }
public override SbnObject Clone(string sNodeName) { CountryDivision retObject = new CountryDivision(this); if (!object.ReferenceEquals(this.DivisionType, null)) { retObject.DivisionType = (BasicInfoDetail)this.DivisionType.Clone(sNodeName); } if (!object.ReferenceEquals(this.Parent, null)) { retObject.Parent = (CountryDivision)this.Parent.Clone(sNodeName); } return(retObject); }
public override void Initialize() { base.Initialize(); this._DivisionType = new BasicInfoDetail(); this._Parent = new CountryDivision(); }