public void CopyTo(BasLabelTypeConfig obj) { obj.ID = this.ID; obj.TplType = this.TplType; obj.TplDesc = this.TplDesc; obj.BindFunc = this.BindFunc; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; }
public Object Clone() { BasLabelTypeConfig obj = new BasLabelTypeConfig(); obj.ID = this.ID; obj.TplType = this.TplType; obj.TplDesc = this.TplDesc; obj.BindFunc = this.BindFunc; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; return(obj); }