1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- declare (strict_types=1);
- namespace app\services\activity\table;
- use app\services\BaseServices;
- use app\dao\activity\table\TableSeatsDao;
- class TableSeatsServices extends BaseServices
- {
-
- public function __construct(TableSeatsDao $dao)
- {
- $this->dao = $dao;
- }
-
- public function tableSeatsList(int $storeId)
- {
- return $this->dao->tableSeats($storeId, []);
- }
- }
|