9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
import {restPost} from "@/rest/restConsumer.js";
|
|
|
|
export async function createExemptionsRequest(exempReq){
|
|
return restPost("/exemptionreq", exempReq)
|
|
}
|
|
|
|
export async function createScholarshipRequest(scholReq){
|
|
return restPost("/scholarshipreq", scholReq)
|
|
} |