factory = $factory; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->fieldDefinition = $fieldDefinition; } public static function getEntityFqcn() { return ReductionCart::class; } public function getFactory(): ReductionCartFactory { return $this->factory; } public function getRepositoryQuery(): ReductionCartRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ReductionCartStore { $this->store->resetContext(); return $this->store; } public function getFieldDefinition(): ReductionCartFieldDefinition { return $this->fieldDefinition; } }