public static function getEmpreendimentosByProduto($id_produto)
 {
     $EmpreendimentoDao = new EmpreendimentoDao();
     $Empreendimentos = $EmpreendimentoDao->getEmpreendimentosByProduto($id_produto, $_GET);
     if ($Empreendimentos) {
         Flight::json($Empreendimentos);
     } else {
         Flight::halt(404, 'Não há resultado para a busca');
     }
 }