function pesquisarProjetoPorId($id)
{
    $agendaDAO = new AgendaDAO();
    echo json_encode($agendaDAO->pesquisarProjetoPorId($id));
}