Example #1
0
 public function empresa()
 {
     $artigo = Container::getClass('Artigo');
     $this->view->artigos = $artigo->fetchAll();
     $this->render('index');
 }
Example #2
0
 public function artigos()
 {
     $artigos = Container::getClass("Artigo");
     $this->view->artigos = $artigos->fetchAll();
     $this->render('artigo');
 }