uri_path .= 'customer/'; // $this->view_path .= "customer" . DIRECTORY_SEPARATOR; } final public function getAccountService(): AccountService { if (!$this->_accountService) { $this->_accountService = new AccountService($this->request); } return $this->_accountService; } final public function getCouponService(): CouponService { if (!$this->_couponService) { $this->_couponService = new CouponService($this->request); } return $this->_couponService; } final public function getPointService(): PointService { if (!$this->_pointService) { $this->_pointService = new PointService($this->request); } return $this->_pointService; } //Index,FieldForm관련 }