_accountService) { $this->_accountService = new AccountService($this->getRequest()); } return $this->_accountService; } final public function getCouponService(): CouponService { if (!$this->_couponService) { $this->_couponService = new CouponService($this->getRequest()); } return $this->_couponService; } final public function getPointService(): PointService { if (!$this->_pointService) { $this->_pointService = new PointService($this->getRequest()); } return $this->_pointService; } }