|
123456789101112131415161718 |
- <?php
-
- namespace common\logic\Order\ProductOrder;
-
- use common\logic\BaseManager;
-
- /**
- * @mixin ProductOrderSolver
- * @mixin ProductOrderRepository
- * @mixin ProductOrderBuilder
- */
- class ProductOrderManager extends BaseManager
- {
- public function __construct()
- {
- $this->setContainer(new ProductOrderContainer());
- }
- }
|