factory = $factory; $this->solver = $solver; $this->builder = $builder; $this->resolver = $resolver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public static function getEntityFqcn() { return Merchant::class; } public function getFactory(): MerchantFactory { return $this->factory; } public function getSolver(): MerchantSolver { return $this->solver; } public function getResolver(): MerchantResolver { return $this->resolver; } public function getRepositoryQuery(): MerchantRepositoryQuery { return $this->repositoryQuery; } public function getStore(): MerchantStore { return $this->store; } public function getBuilder(): MerchantBuilder { return $this->builder; } }