예제 #1
0
 public function __construct(\Doctrine\ORM\EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SONAcl\\Entity\\Resource";
 }
예제 #2
0
 public function __construct(EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SONAcl\\Entity\\Role";
 }
예제 #3
0
 public function __construct(EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SYSEADModulo\\Entity\\Modulo";
 }
예제 #4
0
 public function __construct(EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SYSEADResposta\\Entity\\Resposta";
 }
예제 #5
0
 public function __construct(EntityManager $entityManager)
 {
     parent::__construct($entityManager);
     $this->entity = "SONAcl\\Entity\\Privilege";
 }
예제 #6
0
 public function __construct(EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SYSEADQuestao\\Entity\\Questao";
 }
예제 #7
0
파일: Curso.php 프로젝트: feijojr/EADGestao
 public function __construct(EntityManager $em, $view)
 {
     parent::__construct($em);
     $this->entity = "SYSEADCurso\\Entity\\Curso";
     $this->view = $view;
 }
예제 #8
0
 public function __construct(EntityManager $em, $view)
 {
     parent::__construct($em);
     $this->entity = "SYSEADProfessor\\Entity\\Professor";
     $this->view = $view;
 }
예제 #9
0
파일: Aula.php 프로젝트: feijojr/EADGestao
 public function __construct(EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "SYSEADAula\\Entity\\Aula";
 }