public override void Initialize() { base.Initialize(); this._RegisterDate = ""; this._Title = ""; this._CompleteText = ""; this._CorrelateLawDoc = new Law(); this._CorrelateCommission = new BasicInfoDetail(); this._CorrelateOffer = new Offer(); }
public override SbnObject Clone(string sNodeName) { Law law = new Law { ID = base.ID, Title = this._Title }; if (this._LawDate != null) { law.LawDate = (string)this._LawDate.Clone(); } law.LawText = this._LawText; if (!object.ReferenceEquals(this.LowSourceType, null)) { law.LowSourceType = (BasicInfoDetail)this.LowSourceType.Clone(sNodeName); } return(law); }