Example #1
0
 public void CopyTo(SysBllConfig obj)
 {
     obj.ID          = this.ID;
     obj.SITE        = this.SITE;
     obj.BU          = this.BU;
     obj.BaseName    = this.BaseName;
     obj.BllName     = this.BllName;
     obj.CreatedDate = this.CreatedDate;
     obj.UpdatedDate = this.UpdatedDate;
     obj.UpdatedBy   = this.UpdatedBy;
 }
Example #2
0
        public Object Clone()
        {
            SysBllConfig obj = new SysBllConfig();

            obj.ID = this.ID;

            obj.SITE        = this.SITE;
            obj.BU          = this.BU;
            obj.BaseName    = this.BaseName;
            obj.BllName     = this.BllName;
            obj.CreatedDate = this.CreatedDate;
            obj.UpdatedDate = this.UpdatedDate;
            obj.UpdatedBy   = this.UpdatedBy;

            return(obj);
        }