Пример #1
0
 public void CopyTo(BasLabelTemplateFile obj)
 {
     obj.ID          = this.ID;
     obj.TplId       = this.TplId;
     obj.FileName    = this.FileName;
     obj.FileData    = this.FileData;
     obj.UpdatedDate = this.UpdatedDate;
     obj.UpdatedBy   = this.UpdatedBy;
 }
Пример #2
0
        public Object Clone()
        {
            BasLabelTemplateFile obj = new BasLabelTemplateFile();

            obj.ID          = this.ID;
            obj.TplId       = this.TplId;
            obj.FileName    = this.FileName;
            obj.FileData    = this.FileData;
            obj.UpdatedDate = this.UpdatedDate;
            obj.UpdatedBy   = this.UpdatedBy;

            return(obj);
        }