Skip to content

Commit

Permalink
Merge branch 'vaaranan-yaser-annie/create-volunteer-signup-implementa…
Browse files Browse the repository at this point in the history
…tion-and-interface' into annie/volunteer-get
  • Loading branch information
annxiesun authored Nov 2, 2023
2 parents ab1692e + 6cb5289 commit 310d91e
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions backend/typescript/services/implementations/volunteerSignup.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
import { volunteerPlatformSignUp } from "@prisma/client";
import IVolunteerSignup from "../interfaces/volunteerSignup";

class VolunteerSignup implements IVolunteerSignup {
class VolunteerSignup implements IVolunteerSignup{

async getVolunteerSignup(id: string): Promise<volunteerPlatformSignUp> {}
async getVolunteerSignup(id: string): Promise<volunteerPlatformSignUp> {}

async postVolunteerSignup(): Promise<void> {}
async postVolunteerSignup(): Promise<void> {

}

async editVolunteerSignup(): Promise<void> {

}

async editVolunteerSignup(): Promise<void> {}
}

export default VolunteerSignup;

0 comments on commit 310d91e

Please sign in to comment.