示例#1
0
 public override void Initialize()
 {
     base.Initialize();
     this._RegisterDate        = "";
     this._Title               = "";
     this._CompleteText        = "";
     this._CorrelateLawDoc     = new Law();
     this._CorrelateCommission = new BasicInfoDetail();
     this._CorrelateOffer      = new Offer();
 }
示例#2
0
        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);
        }