getRepository(User::class); } public function getTranslationRepository(): TranslationRepository { return $this->getRepository(Translation::class); } public function getTermRepository(): TermRepository { return $this->getRepository(Term::class); } public function getTermFlagRepository(): TermFlagRepository { return $this->getRepository(TermFlag::class); } public function getPronunciationRepository(): PronunciationRepository { return $this->getRepository(Pronunciation::class); } public function getDictTypeRepository(): DictTypeRepository { return $this->getRepository(DictType::class); } public function getDictionaryRepository(): DictionaryRepository { return $this->getRepository(Dictionary::class); } }