public static function getCores($offset, $limit)
 {
     $CorProdutoDao = new CorProdutoDao();
     $Cores = $CorProdutoDao->getCores($offset, $limit, $_GET);
     if ($Cores) {
         Flight::json($Cores);
     } else {
         Flight::halt(404, 'Não há resultado para a busca');
     }
 }