18 lines
674 B
TypeScript
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 {}
|