targo-backend/src/time-and-attendance/timesheets/timesheets.module.ts
2026-01-12 09:54:38 -05:00

18 lines
674 B
TypeScript

import { Module } from '@nestjs/common';
import { TimesheetController } from 'src/time-and-attendance/timesheets/timesheet.controller';
import { TimesheetApprovalService } from 'src/time-and-attendance/timesheets/services/timesheet-approval.service';
import { GetTimesheetsOverviewService } from 'src/time-and-attendance/timesheets/services/timesheet-employee-overview.service';
import { EmailToIdResolver } from 'src/common/mappers/email-id.mapper';
@Module({
controllers: [TimesheetController],
providers: [
GetTimesheetsOverviewService,
EmailToIdResolver,
TimesheetApprovalService,
],
exports: [TimesheetApprovalService],
})
export class TimesheetsModule {}