public function __construct(EntityManager $em, GenerateMyUri $generateMyUri, Crypt $cryptService)
 {
     $this->entity = 'Domain\\User\\Entity\\User';
     $this->generateMyUri = $generateMyUri;
     $this->cryptService = $cryptService;
     parent::__construct($em);
 }
 public function __construct(EntityManager $em, Crypt $cryptService)
 {
     $this->entity = 'Domain\\User\\Entity\\Login';
     $this->cryptService = $cryptService;
     parent::__construct($em);
 }