private List <Emp> FindAllEmpsForAllocate()
        {
            List <Emp> emps = null;

            try
            {
                OleDbConnection con = empDao.BeginKeyword();
                emps = empDao.FindAllEmpDAO(con);
                empDao.Commit();
                return(emps);
            }
            catch (Exception)
            {
                empDao.RollBack();
                throw;
            }
            finally
            {
                empDao.Close();
            }
        }