public static function getEmpreendimentos()
 {
     $empreendimentoDao = new EmpreendimentoDao();
     $empreendimento = $empreendimentoDao->getEmpreendimentos();
     if ($empreendimento) {
         Flight::json($empreendimento);
     } else {
         Flight::halt(404, 'Nenhum empreendimento encontrado.');
     }
 }
 public static function getEmpreendimentos($offset, $limit)
 {
     $EmpreendimentoDao = new EmpreendimentoDao();
     $Empreendimentos = $EmpreendimentoDao->getEmpreendimentos($offset, $limit, $_GET);
     if ($Empreendimentos) {
         Flight::json($Empreendimentos);
     } else {
         Flight::halt(404, 'Não há resultado para a busca');
     }
 }