/// <summary> /// 读取所有员工记录 /// </summary> /// <param name="nOpStaffId"></param> /// <param name="strOpStaffName"></param> /// <param name="strErrText"></param> /// <returns></returns> public List <Staff> LoadStaffs(long nOpStaffId, string strOpStaffName, out string strErrText) { try { List <Staff> dataResult = null; strErrText = String.Empty; using (TransactionScope transScope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(2, 0, 0))) { using (StaffDAO dao = new StaffDAO()) { dataResult = dao.LoadStaffs(nOpStaffId, strOpStaffName, out strErrText); } transScope.Complete(); } return(dataResult); } catch (Exception e) { strErrText = e.Message; return(null); } }