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.

CommandTypesBusiness.php 303B

1234567891011121314
  1. <?php
  2. namespace App\Http\Business;
  3. use Luticate\Utils\LuBusiness;
  4. use App\Http\DataAccess\CommandTypesDataAccess;
  5. use App\Http\DBO\CommandTypesDbo;
  6. class CommandTypesBusiness extends LuBusiness {
  7. protected static function getDataAccess()
  8. {
  9. return new CommandTypesDataAccess();
  10. }
  11. }