123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\services\product\shipping;
- use app\dao\product\shipping\ShippingTemplatesRegionCityDao;
- use app\services\BaseServices;
- class ShippingTemplatesRegionCityServices extends BaseServices
- {
-
- public function __construct(ShippingTemplatesRegionCityDao $dao)
- {
- $this->dao = $dao;
- }
- }
|