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.

13 lines
227B

  1. <?php
  2. namespace common\repositories;
  3. use common\models\ProducerPriceRange;
  4. class ProducerPriceRangeRepository
  5. {
  6. public function query()
  7. {
  8. return ProducerPriceRange::find()->orderBy('range_begin ASC');
  9. }
  10. }