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.

SensorTypesController.php 292B

1234567891011121314
  1. <?php
  2. namespace App\Http\Controller;
  3. use Luticate\Utils\LuController;
  4. use App\Http\Business\SensorTypesBusiness;
  5. use App\Http\DBO\SensorTypesDbo;
  6. class SensorTypesController extends LuController {
  7. protected function getBusiness()
  8. {
  9. return new SensorTypesBusiness();
  10. }
  11. }