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.

CameraTypesDataAccess.php 389B

12345678910111213141516171819
  1. <?php
  2. namespace App\Http\DataAccess;
  3. use Luticate\Utils\LuDataAccess;
  4. use App\Http\DataAccess\Models\CameraTypes;
  5. use App\Http\DBO\CameraTypesDbo;
  6. class CameraTypesDataAccess extends LuDataAccess {
  7. protected static function getModel()
  8. {
  9. return new CameraTypes();
  10. }
  11. protected static function getOrderBy()
  12. {
  13. return array(array("name", "ASC"));
  14. }
  15. }