dbms_init...1

This commit is contained in:
최준흠 2025-05-23 15:59:17 +09:00
parent 4fc7d9407e
commit 52155fa104

View File

@ -2,17 +2,18 @@
namespace App\Controllers\Admin\Customer;
use App\Controllers\Admin\Customer\CustomerController;
use App\Helpers\Customer\ServiceHelper;
use App\Services\Customer\ServiceService;
use App\Services\Equipment\IpService;
use App\Services\Equipment\LineService;
use App\Services\Equipment\ServerService;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
use Psr\Log\LoggerInterface;
use App\Helpers\Customer\ServiceHelper;
use App\Services\Customer\ServiceService;
use App\Services\Equipment\LineService;
use App\Services\Equipment\ServerService;
use App\Services\Equipment\IpService;
class ServiceController extends CustomerController
{
@ -40,6 +41,7 @@ class ServiceController extends CustomerController
if (!$this->_helper) {
$this->_helper = new ServiceHelper($this->request);
}
// dd($this->_helper);
return $this->_helper;
}
final public function getLineService(): LineService