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