Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 lines
477B

  1. <?php
  2. namespace common\logic\Document\Quotation\Repository;
  3. use common\logic\AbstractRepositoryQuery;
  4. use common\logic\Document\Quotation\Model\Quotation;
  5. use common\logic\Document\Quotation\Service\QuotationDefinition;
  6. use yii\db\ActiveQuery;
  7. class QuotationRepositoryQuery extends AbstractRepositoryQuery
  8. {
  9. protected QuotationDefinition $definition;
  10. public function loadDependencies(): void
  11. {
  12. $this->loadDefinition(QuotationDefinition::class);
  13. }
  14. }