dbmsv4/app/Services/Equipment/EquipmentService.php
2025-11-19 10:18:16 +09:00

16 lines
308 B
PHP

<?php
namespace App\Services\Equipment;
use App\Models\CommonModel;
use App\Services\CommonService;
abstract class EquipmentService extends CommonService
{
protected function __construct(CommonModel $model)
{
parent::__construct($model);
$this->addClassPaths('Equipment');
}
}