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.

19 lines
430B

  1. <?php
  2. namespace common\logic\Document\Invoice;
  3. use common\logic\Document\Document\DocumentManager;
  4. use common\logic\Document\Quotation\QuotationBuilder;
  5. use common\logic\PointSale\PointSale\QuotationRepository;
  6. /**
  7. * @mixin QuotationRepository
  8. * @mixin QuotationBuilder
  9. */
  10. class QuotationManager extends DocumentManager
  11. {
  12. public function __construct()
  13. {
  14. $this->setContainer(new QuotationContainer());
  15. }
  16. }