Exemplo n.º 1
0
        /// <summary>
        /// 取得員工身分最大排序編號
        /// </summary>
        public int GetEmployeeRoleMaxSortNo()
        {
            int result = 0;

            using (EmployeeAuthorityDataAccess empAuthDao = new EmployeeAuthorityDataAccess())
            {
                result   = empAuthDao.GetEmployeeRoleMaxSortNo();
                dbErrMsg = empAuthDao.GetErrMsg();
            }

            return(result);
        }