- /**
- * SearchController constructor.
- * @param EntityRepo $entityRepo
- * @param ViewService $viewService
- * @param SearchService $searchService
- * @param EntityContextManager $entityContextManager
- */
- public function __construct(
- EntityRepo $entityRepo,
- ViewService $viewService,
- SearchService $searchService,
- EntityContextManager $entityContextManager
- ) {
- $this->entityRepo = $entityRepo;
- $this->viewService = $viewService;
- $this->searchService = $searchService;
- $this->entityContextManager = $entityContextManager;
- parent::__construct();