Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
        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);
        }