paymentGateway = PaymentFactory::createPaymentService($pay_code); } public function pay($order){ return $this->paymentGateway->pay($order); } public function response($data){ return $this->paymentGateway->response($data); } public function callback($data){ return $this->paymentGateway->callback($data); } }