예제 #1
0
파일: DDSystem.cs 프로젝트: zjchenxk/SYLS
        /// <summary>
        /// 读取所有城市自定义数据
        /// </summary>
        /// <param name="nOpStaffId">操作员工编码</param>
        /// <param name="strOpStaffName">操作员工姓名</param>
        /// <param name="strErrText">出错信息</param>
        /// <returns>城市数据集</returns>
        public List<City> LoadCitys(long nOpStaffId, string strOpStaffName, out string strErrText)
        {
            try
            {
                List<City> dsRet = null;

                using (TransactionScope transScope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(2, 0, 0)))
                {
                    using (DDDAO dao = new DDDAO())
                    {
                        dsRet = dao.LoadCitys(nOpStaffId, strOpStaffName, out strErrText);
                        if (dsRet == null)
                            return null;
                    }
                    transScope.Complete();
                }
                return dsRet;
            }
            catch (Exception e)
            {
                strErrText = e.Message;
                return null;
            }
        }