dbmsv4/app/Services/Customer/CustomerService.php
2025-11-18 18:06:17 +09:00

16 lines
305 B
PHP

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