- <?php
-
- namespace common\logic\ProducerPriceRange;
-
- use common\logic\BaseService;
- use common\logic\RepositoryInterface;
- use common\models\ProducerPriceRange;
-
- class ProducerPriceRangeRepository extends BaseService implements RepositoryInterface
- {
- public function query()
- {
- return ProducerPriceRange::find()->orderBy('range_begin ASC');
- }
- }
|