factory = $factory; $this->solver = $solver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->builder = $builder; } public static function getEntityFqcn() { return Address::class; } public function getFactory(): AddressFactory { return $this->factory; } public function getSolver(): AddressSolver { return $this->solver; } public function getRepositoryQuery(): AddressRepositoryQuery { return $this->repositoryQuery; } public function getStore(): AddressStore { $this->store->resetContext(); return $this->store; } public function getBuilder(): AddressBuilder { return $this->builder; } }