Skip to content

Commit

Permalink
added post service request implementation declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
emmahuangg committed Oct 30, 2023
1 parent 338b5da commit 362195b
Show file tree
Hide file tree
Showing 2 changed files with 6,854 additions and 6,098 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@ class ServiceRequest implements IServiceRequest {
/* eslint-disable class-methods-use-this */

// get method here
async getServiceRequestByID(requestId: string): Promise<Prisma.getServiceRequestByID> {}
async getServiceRequestByID(
requestId: string,
): Promise<Prisma.getServiceRequestByID> {}

// post method here
async postServiceRequest(
serviceRequest: Prisma.serviceRequestCreateInput,
): Promise<Prisma.serviceRequestCreateInput> {}

async deleteServiceRequestByID(requestId: string): Promise<void> {}
}
Expand Down
Loading

0 comments on commit 362195b

Please sign in to comment.