Ejemplo n.º 1
0
 @Override
 public List<Employee> findAll() {
   try {
     return empDao.findAll();
   } catch (Exception e) {
     throw new RuntimeException(e);
   }
 }