public void Save(WorkerAttachmentInfo info) { if (this.IsExisted(info)) { this.Update(info); } else { this.Insert(info); } if (!string.IsNullOrEmpty(info.Content)) { GlobalSetting.SaveFile(string.Format("{0}_{1}", info.WorkerID, info.RowNo), info.Content); } }