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; }
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); }