/// <summary> /// 读取指定员工记录 /// </summary> /// <param name="nStaffId"></param> /// <param name="nOpStaffId"></param> /// <param name="strOpStaffName"></param> /// <param name="strErrText"></param> /// <returns></returns> public Staff LoadStaff(long nStaffId, long nOpStaffId, string strOpStaffName, out string strErrText) { try { 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.LoadStaff(nStaffId, nOpStaffId, strOpStaffName, out strErrText); } transScope.Complete(); } return(dataResult); } catch (Exception e) { strErrText = e.Message; return(null); } }