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.

19 lines
319B

  1. <?php
  2. namespace common\containers;
  3. use common\repositories\ProducerRepository;
  4. use common\services\ProducerService;
  5. class ProducerContainer
  6. {
  7. public function getService()
  8. {
  9. return new ProducerService();
  10. }
  11. public function getRepository()
  12. {
  13. return new ProducerRepository();
  14. }
  15. }