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.
15 lines (14 loc) • 372 B
JavaScript
import { Endpoints } from "../../constant/constant";
import { BaseService } from "./baseService";
class OrderService extends BaseService {
endpoint = Endpoints.Order;
constructor(data) {
super(data);
}
// #region "POST"
create(data) {
const url = this.resolveURL();
return this.POST(url, data);
}
}
export { OrderService };