|
- <?php
-
- namespace Lc\CaracoleBundle\Container\Reduction;
-
- use Lc\CaracoleBundle\Factory\Reduction\ReductionCatalogFactory;
- use Lc\CaracoleBundle\Repository\Reduction\ReductionCatalogRepositoryQuery;
- use Lc\CaracoleBundle\Repository\Reduction\ReductionCatalogStore;
-
- class ReductionCatalogContainer
- {
- protected ReductionCatalogFactory $factory;
- protected ReductionCatalogRepositoryQuery $repositoryQuery;
- protected ReductionCatalogStore $store;
-
- public function __construct(
- ReductionCatalogFactory $factory,
- ReductionCatalogRepositoryQuery $repositoryQuery,
- ReductionCatalogStore $store
- ) {
- $this->factory = $factory;
- $this->repositoryQuery = $repositoryQuery;
- $this->store = $store;
- }
-
- public function getFactory(): ReductionCatalogFactory
- {
- return $this->factory;
- }
-
- public function getRepositoryQuery(): ReductionCatalogRepositoryQuery
- {
- return $this->repositoryQuery;
- }
-
- public function getStore(): ReductionCatalogStore
- {
- return $this->store;
- }
-
- }
|