diff --git a/backend/typescript/services/implementations/volunteerPlatformSignup.ts b/backend/typescript/services/implementations/volunteerPlatformSignup.ts new file mode 100644 index 0000000..fcdf409 --- /dev/null +++ b/backend/typescript/services/implementations/volunteerPlatformSignup.ts @@ -0,0 +1,20 @@ +import IVolunteerPlatformSignup from "../interfaces/volunteerPlatformSignup"; + +class VolunteerPlatformSignup implements IVolunteerPlatformSignup{ + // ADD PARAMETER AND RETURN TYPES IN NEXT TICKET + + async getVolunteerPlatformSignup(): Promise { + // Implementation to be added + } + + async postVolunteerPlatformSignup(): Promise { + // Implementation to be added + } + + async editVolunteerPlatformSignup(): Promise { + // Implementation to be added + } + +} + +export default VolunteerPlatformSignup; diff --git a/backend/typescript/services/implementations/volunteerSignup.ts b/backend/typescript/services/implementations/volunteerSignup.ts deleted file mode 100644 index 322a682..0000000 --- a/backend/typescript/services/implementations/volunteerSignup.ts +++ /dev/null @@ -1,20 +0,0 @@ -import IVolunteerSignup from "../interfaces/volunteerSignup"; - -class VolunteerSignup implements IVolunteerSignup{ - // ADD PARAMETER AND RETURN TYPES IN NEXT TICKET - - async getVolunteerSignup(): Promise { - // Implementation to be added - } - - async postVolunteerSignup(): Promise { - // Implementation to be added - } - - async editVolunteerSignup(): Promise { - // Implementation to be added - } - -} - -export default VolunteerSignup; diff --git a/backend/typescript/services/interfaces/volunteerPlatformSignup.ts b/backend/typescript/services/interfaces/volunteerPlatformSignup.ts new file mode 100644 index 0000000..88bf2b9 --- /dev/null +++ b/backend/typescript/services/interfaces/volunteerPlatformSignup.ts @@ -0,0 +1,21 @@ +interface IVolunteerPlatformSignup { + // ADD PARAMETER AND RETURN TYPES IN NEXT TICKET + + /** + * Gets volunteer signup + */ + getVolunteerPlatformSignup(): Promise; + + /** + * Posts volunteer signup + */ + postVolunteerPlatformSignup(): Promise + + /** + * Edits volunteer signup + */ + editVolunteerPlatformSignup(): Promise + +} + +export default IVolunteerPlatformSignup; \ No newline at end of file diff --git a/backend/typescript/services/interfaces/volunteerSignup.ts b/backend/typescript/services/interfaces/volunteerSignup.ts deleted file mode 100644 index 349f3d4..0000000 --- a/backend/typescript/services/interfaces/volunteerSignup.ts +++ /dev/null @@ -1,21 +0,0 @@ -interface IVolunteerSignup { - // ADD PARAMETER AND RETURN TYPES IN NEXT TICKET - - /** - * Gets volunteer signup - */ - getVolunteerSignup(): Promise; - - /** - * Posts volunteer signup - */ - postVolunteerSignup(): Promise - - /** - * Edits volunteer signup - */ - editVolunteerSignup(): Promise - -} - -export default IVolunteerSignup; \ No newline at end of file