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.

EntityTypesBusiness.php 450B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Http\Business;
  3. use Luticate\Utils\LuBusiness;
  4. use App\Http\DataAccess\EntityTypesDataAccess;
  5. use App\Http\DBO\EntityTypesDbo;
  6. class EntityTypesBusiness extends LuBusiness {
  7. const ENTITY_CAMERA = 1;
  8. protected static function getDataAccess()
  9. {
  10. return new EntityTypesDataAccess();
  11. }
  12. public static function getAllForType($type)
  13. {
  14. return EntityTypesDataAccess::getAllForType($type);
  15. }
  16. }