예제 #1
0
파일: Address.cs 프로젝트: code-mtnit/WPFSM
 public override void Initialize()
 {
     base.Initialize();
     this._BasicStreet   = "";
     this._PostalCode    = "";
     this._DetailAddress = "";
     this._CoCity        = new CountryDivision();
     this._CoProvince    = new CountryDivision();
 }
예제 #2
0
        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);
        }
예제 #3
0
 public override void Initialize()
 {
     base.Initialize();
     this._DivisionType = new BasicInfoDetail();
     this._Parent       = new CountryDivision();
 }