/**
  * @return EntityRepository
  */
 public function getRepository()
 {
     if (null == $this->repository) {
         $this->repository = $this->getEntityManager()->getRepository($this->entity->getClassName());
     }
     return $this->repository;
 }