dbmsv3/app/Services/Part/PartService.php
2025-10-01 14:03:52 +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');
}
}