dbms_primeidc/extdbms/lib/Controllers/DBMS/Client/PaymentController.php
2025-04-07 10:44:52 +09:00

23 lines
526 B
PHP

<?php
namespace lib\Controllers\DBMS;
use lib\Services\ClientService;
class PaymentController extends DBMSController
{
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