|
12345678910111213141516171819 |
- <?php
-
- namespace common\components;
-
- use common\containers\UserContainer;
- use common\containers\ProducerContainer;
-
- class BusinessLogic
- {
- public function getUserContainer()
- {
- return new UserContainer();
- }
-
- public function getProducerContainer()
- {
- return new ProducerContainer();
- }
- }
|