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