public void CopyTo(SysConfigInfo obj) { obj.ID = this.ID; obj.SITE = this.SITE; obj.BU = this.BU; obj.KeyName = this.KeyName; obj.ItemText = this.ItemText; obj.ItemValue = this.ItemValue; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; }
public Object Clone() { SysConfigInfo obj = new SysConfigInfo(); obj.ID = this.ID; obj.SITE = this.SITE; obj.BU = this.BU; obj.KeyName = this.KeyName; obj.ItemText = this.ItemText; obj.ItemValue = this.ItemValue; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; return(obj); }