mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 14:20:58 +00:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { Module } from "@nestjs/common";
|
|
import { TypeOrmModule } from "@nestjs/typeorm";
|
|
import { Employee } from "@tria-plc/iamapi-common";
|
|
import { User } from "@tria-plc/iamapi-common/entities/iam/user/user.entity";
|
|
|
|
import { Booking } from "../bookings/entities/booking.entity";
|
|
import { Cargo } from "../cargoes/entities/cargoes.entity";
|
|
import { Container } from "../container-management/entities/container.entity";
|
|
import { Company } from "../companies/entities/company.entity";
|
|
import { PaymentEntity } from "../payment/entities/payment.entity";
|
|
import { Train } from "../trains/entities/train.entity";
|
|
import { Wagon } from "../wagons/entities/wagon.entity";
|
|
import { OverviewController } from "./overview.controller";
|
|
import { OverviewRepository } from "./overview.repository";
|
|
import { OverviewService } from "./overview.service";
|
|
|
|
@Module({
|
|
imports: [
|
|
TypeOrmModule.forFeature([
|
|
Booking,
|
|
PaymentEntity,
|
|
Company,
|
|
Train,
|
|
Wagon,
|
|
Container,
|
|
Cargo,
|
|
Employee,
|
|
User,
|
|
]),
|
|
],
|
|
controllers: [OverviewController],
|
|
providers: [OverviewService, OverviewRepository],
|
|
})
|
|
export class OverviewModule { }
|