factory = $factory; $this->solver = $solver; $this->builder = $builder; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public static function getEntityFqcn() { return OrderProduct::class; } public function getFactory(): OrderProductFactory { return $this->factory; } public function getSolver(): OrderProductSolver { return $this->solver; } public function getBuilder(): OrderProductBuilder { return $this->builder; } public function getRepositoryQuery(): OrderProductRepositoryQuery { return $this->repositoryQuery; } public function getStore(): OrderProductStore { return $this->store; } }