Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

19 linhas
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. }