dbmsv2/app/Services/Part/PartService.php
2025-09-29 16:34:07 +09:00

17 lines
353 B
PHP

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