dbmsv2/app/Services/Part/PartService.php
2025-09-25 13:19:06 +09:00

19 lines
394 B
PHP

<?php
namespace App\Services\Part;
use App\Entities\Customer\ClientEntity;
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');
}
}