public static function getAll($offset = 0, $limit = null)
 {
     $paises = parent::getAll($offset, $limit);
     $retorno = array();
     foreach ($paises as $p) {
         $retorno[$p->getCodBacen()] = $p->getNome();
     }
     return $retorno;
 }