Adds a payment provider service that can easily retrieve payment providers

This commit is contained in:
Sebastian Rindom
2020-02-18 14:58:11 +01:00
parent d114b806d6
commit f8fcd5a3dd
7 changed files with 313 additions and 4 deletions
@@ -42,6 +42,10 @@ class BasePaymentService extends BaseService {
throw Error("updatePayment must be overridden by the child class")
}
getStatus() {
throw Error("getStatus must be overridden by the child class")
}
authorizePayment() {
throw Error("authorizePayment must be overridden by the child class")
}