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

16 lines
293 B
PHP

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