|
- <?php
-
- namespace common\logic\Product\ProductPointSale;
-
- use common\logic\BaseService;
- use common\logic\RepositoryInterface;
-
- class ProductPointSaleRepository extends BaseService implements RepositoryInterface
- {
- public function getDefaultOptionsSearch(): array
- {
- return [
- 'with' => ['product', 'pointSale'],
- 'join_with' => [],
- 'orderby' => '',
- 'attribute_id_producer' => ''
- ] ;
- }
- }
|