factory = $factory; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->fieldDefinition = $fieldDefinition; } public static function getEntityFqcn() { return ReductionCatalog::class; } public function getFactory(): ReductionCatalogFactory { return $this->factory; } public function getRepositoryQuery(): ReductionCatalogRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ReductionCatalogStore { $this->store->resetContext(); return $this->store; } public function getFieldDefinition(): ReductionCatalogFieldDefinition { return $this->fieldDefinition; } // public function getSolver(): ReductionCatalogSolver // { // return $this->solver; // } }