diff --git a/src/modules/timesheets/timesheets.module.ts b/src/modules/timesheets/timesheets.module.ts index 11da5c8..7979a2b 100644 --- a/src/modules/timesheets/timesheets.module.ts +++ b/src/modules/timesheets/timesheets.module.ts @@ -1,10 +1,14 @@ import { Module } from '@nestjs/common'; import { TimesheetsController } from './controllers/timesheets.controller'; import { TimesheetsService } from './services/timesheets.service'; +import { OvertimeService } from 'src/business-logic/overtime.service'; @Module({ controllers: [TimesheetsController], - providers: [TimesheetsService], + providers: [ + TimesheetsService, + OvertimeService, + ], exports: [TimesheetsService], }) export class TimesheetsModule {}