ProductManagerHandler.php 749 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace ModulesGarden\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Traits;
  3. use ModulesGarden\Servers\KerioEmail\App\Libs\Product\ProductManager;
  4. use ModulesGarden\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Services\Create\CreateAccount;
  5. trait ProductManagerHandler
  6. {
  7. /**
  8. * @var ProductManager
  9. */
  10. protected $productManager;
  11. /**
  12. * @return ProductManager
  13. */
  14. public function getProductManager()
  15. {
  16. return $this->productManager;
  17. }
  18. /**
  19. * @param ProductManager $productManager
  20. * @return $this
  21. */
  22. public function setProductManager(ProductManager $productManager)
  23. {
  24. $this->productManager = $productManager;
  25. return $this;
  26. }
  27. }