public static function getEmpreendimentosByIdRef($name_ref, $id_ref)
 {
     $dao = new EmpreendimentoDao();
     $items = $dao->getEmpreendimentosByIdRef($name_ref, $id_ref);
     if ($items) {
         Flight::json($items);
     } else {
         Flight::halt(404, 'Não há resultado para a busca');
     }
 }