/// <summary> /// 取得後端作業選項清單 /// </summary> public List <OperationForBackend> GetOperationList(OpListQueryParams param) { List <OperationForBackend> entities = null; using (EmployeeAuthorityDataAccess empAuthDao = new EmployeeAuthorityDataAccess()) { entities = empAuthDao.GetOperationListForBackend(param); dbErrMsg = empAuthDao.GetErrMsg(); } return(entities); }