Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

19 lines
369B

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