예제 #1
0
 public function loadListasAtracoes()
 {
     $estabelecimentoDAO = new EstabelecimentoDAO();
     $eventoDAO = new EventoDAO();
     /*
     		$this->setListaEstabelecimentos($estabelecimentoDAO->gerarListaEstabelecimentos($this));
     		$this->setListaEventos($eventoDAO->gerarListaEventos($this));
     */
     $this->listaEstabelecimentos = $estabelecimentoDAO->gerarListaEstabelecimentos($this);
     $this->listaEventos = $eventoDAO->gerarListaEventos($this);
 }