public boolean Salvar(AlunoTarefa obj) {
    try {
      if (obj.getIdalunotarefa() == 0) {
        PreparedStatement comando =
            bd.getConexao()
                .prepareStatement("insert into alunosportarefa(idaluno, idtarefa) values(?,?)");
        comando.setInt(1, obj.getIdaluno());
        comando.setInt(2, obj.getIdtarefa());
        comando.executeUpdate();
      } else {
        PreparedStatement comando =
            bd.getConexao()
                .prepareStatement(
                    "update alunosportarefa set idaluno=?, idtarefa =? where idalunotarefa = ?");
        comando.setObject(1, obj.getIdaluno());
        comando.setObject(2, obj.getIdtarefa());
        comando.setInt(3, obj.getIdalunotarefa());
        comando.executeUpdate();
      }

      return true;
    } catch (SQLException ex) {
      Logger.getLogger(AlunoTarefaDAO.class.getName()).log(Level.SEVERE, null, ex);
      return false;
    }
  }
  public List<AlunoTarefa> buscar(AlunoTarefa filtro) {
    try {

      String sql = "select * from alunosportarefa ";
      String where = "";

      if (filtro.getIdtarefa() > 0) {
        where = "idtarefa =" + filtro.getIdtarefa() + "%'";
      }

      if (filtro.getIdaluno() > 0) {
        where = "idaluno =" + filtro.getIdaluno() + "%'";
      }

      if (filtro.getIdalunotarefa() > 0) {
        if (where.length() > 0) {
          where = where + " and ";
        }
        where = where + " idalunotarefa = " + filtro.getIdalunotarefa();
      }

      if (where.length() > 0) {
        sql = sql + " where " + where;
      }

      Statement comando = bd.getConexao().createStatement();

      ResultSet resultado = comando.executeQuery(sql);

      List<AlunoTarefa> alunotarefa = new LinkedList<>();
      while (resultado.next()) {

        AlunoTarefa temp = new AlunoTarefa();

        temp.setIdalunotarefa(resultado.getInt("idalunotarefa"));
        temp.setIdaluno(resultado.getInt("idaluno"));
        temp.setIdtarefa(resultado.getInt("idtarefa"));

        alunotarefa.add(temp);
      }
      return alunotarefa;
    } catch (SQLException ex) {
      Logger.getLogger(AlunoTarefaDAO.class.getName()).log(Level.SEVERE, null, ex);
      return null;
    }
  }