public Emprestimos pesquisarEmprestimo(Emprestimos emprestimo) {
    obj = new Emprestimos();
    int idEmprestimo = emprestimo.getIdEmprestimo();
    obj = bancoDao.pesquisarEmprestimo(idEmprestimo);

    return obj;
  }
  public Emprestimos atualizarEmprestimo(Emprestimos emprestimo) {
    obj = new Emprestimos();
    obj.setIdEmprestimo(emprestimo.getIdEmprestimo());
    obj.setMatricUser(emprestimo.getMatricUser());
    obj.setTitLivro(emprestimo.getTitLivro());
    obj.setExemplar(emprestimo.getExemplar());
    obj.setDataEmprestimo(emprestimo.getDataEmprestimo());
    obj.setDataDevolucao(emprestimo.getDataDevolucao());
    obj.setDataDevolucaoReal(emprestimo.getDataDevolucaoReal());

    bancoDao.atualizarEmprestimos(obj);
    return emprestimo;
  }
  public void removerEmprestimo(
      int idEmprestimo,
      int matricUser,
      String titulo,
      int codExemplar,
      String dataEmprestimo,
      String dataDevolucao,
      String dataDevolucaoReal) {
    obj = new Emprestimos();
    obj.setIdEmprestimo(idEmprestimo);
    obj.setMatricUser(matricUser);
    obj.setTitLivro(titulo);
    obj.setExemplar(codExemplar);
    obj.setDataEmprestimo(dataEmprestimo);
    obj.setDataDevolucao(dataDevolucao);
    obj.setDataDevolucaoReal(null);

    bancoDao.removerEmprestimo(obj);
  }