private function lerXML()
 {
     $xml = simplexml_load_file("cotacoes.xml");
     $this->dataAtualizacao = $xml->atualizacao;
     $moedasCarregadas = [];
     foreach ($xml as $cot) {
         $moeda = new Moeda();
         $moeda->setCodigo($cot->codigo[0]);
         $moeda->setValor($cot->valor[0]);
         $moeda->setData($cot->data[0]);
         $moeda->setHora($cot->hora[0]);
         $moedasCarregadas[$moeda->getCodigo() . ""] = $moeda;
     }
     $this->moedasCarregadas = $moedasCarregadas;
 }