You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 line
1.0KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Container\Credit;
  3. use Lc\CaracoleBundle\Factory\Credit\CreditHistoryFactory;
  4. use Lc\CaracoleBundle\Repository\Credit\CreditHistoryRepositoryQuery;
  5. use Lc\CaracoleBundle\Repository\Credit\CreditHistoryStore;
  6. class CreditHistoryContainer
  7. {
  8. protected CreditHistoryFactory $factory;
  9. protected CreditHistoryRepositoryQuery $repositoryQuery;
  10. protected CreditHistoryStore $store;
  11. public function __construct(
  12. CreditHistoryFactory $factory,
  13. CreditHistoryRepositoryQuery $repositoryQuery,
  14. CreditHistoryStore $store
  15. ) {
  16. $this->factory = $factory;
  17. $this->repositoryQuery = $repositoryQuery;
  18. $this->store = $store;
  19. }
  20. public function getFactory(): CreditHistoryFactory
  21. {
  22. return $this->factory;
  23. }
  24. public function getRepositoryQuery(): CreditHistoryRepositoryQuery
  25. {
  26. return $this->repositoryQuery;
  27. }
  28. public function getStore(): CreditHistoryStore
  29. {
  30. return $this->store;
  31. }
  32. }