dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-07 10:54:12 +09:00
parent 086fb997e3
commit f572711d14
2 changed files with 3 additions and 11 deletions

View File

@ -1,22 +1,14 @@
<?php
namespace lib\Controllers\DBMS;
namespace lib\Controllers\DBMS\Client;
use lib\Services\ClientService;
class PaymentController extends DBMSController
class PaymentController extends ClientController
{
private ?ClientService $_clientService = null;
public function __construct()
{
parent::__construct();
$this->getView()->setPath('payment');
} //
public function getClientService(): ClientService
{
if ($this->_clientService === null) {
$this->_clientService = new ClientService();
}
return $this->_clientService;
}
} //Class

View File

@ -24,7 +24,7 @@ class NavigatorController extends DBMSController
}
//부가서비스 : 닷디펜더,딥파인더 등, deepfinder_list.php,dotdefender_list.php
//CLI 접속방법 : php index.php site/navigator//ipsearch
//CLI 접속방법 : php index.php site/navigator/ipsearch
//WEB 접속방법 : http://localhost/site/navigator/ipsearch
public function ipsearch(): string
{