選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
358B

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