ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
14 lines (13 loc) • 487 B
JavaScript
import { ProgramService } from "../service/programService";
import { BaseProxy } from "./baseProxy";
class ProgramProxy extends BaseProxy {
programService;
constructor(data) {
super(data);
this.programService = new ProgramService(data);
}
getSystemFeatures = async () => this.programService.getSystemFeatures();
getBin = async () => this.programService.getBin();
getSignUp = async () => this.programService.getSignUp();
}
export { ProgramProxy };