public function __construct()
 {
     $config = new Config();
     $this->views = $config->GetViewsDir() . "matricula" . DS;
     $this->repositorio = new DaoMatricula();
 }
 public function __construct()
 {
     $config = new Config();
     $this->views = $config->GetViewsDir() . "aluno" . DS;
     $this->repositorio = new DaoAluno();
 }
 public function __construct()
 {
     $config = new Config();
     $this->homeViews = $config->GetViewsDir() . DS;
 }
 public function __construct()
 {
     $config = new Config();
     $this->permissaoViews = $config->GetViewsDir() . "permissao" . DS;
     $this->repositorio = new DaoPermissao();
 }
 public function __construct()
 {
     $config = new Config();
     $this->views = $config->GetViewsDir() . "disciplina" . DS;
     $this->repositorio = new DaoDisciplina();
 }
 public function __construct()
 {
     $config = new Config();
     $this->views = $config->GetViewsDir() . "turma" . DS;
     $this->repositorio = new DaoTurma();
 }
 public function __construct()
 {
     $config = new Config();
     $this->views = $config->GetViewsDir() . "professor" . DS;
     $this->repositorio = new DaoProfessor();
 }