2022-03-31 14:33:11 -06:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
|
|
|
import { CarreraProgramaController } from './carrera-programa.controller';
|
2022-04-04 20:02:54 -05:00
|
|
|
import { CarreraProgramaService } from './carrera-programa.service';
|
2022-04-17 20:56:02 -05:00
|
|
|
import { CarreraPrograma } from './entity/carrera-programa.entity';
|
2022-05-31 14:26:57 -05:00
|
|
|
import { InstitucionModule } from '../institucion/institucion.module';
|
2022-05-01 17:03:37 -05:00
|
|
|
import { InstitucionCarreraModule } from '../institucion-carrera/institucion-carrera.module';
|
2022-05-31 14:26:57 -05:00
|
|
|
import { InstitucionProgramaModule } from '../institucion-programa/institucion-programa.module';
|
2022-03-31 14:33:11 -06:00
|
|
|
|
|
|
|
|
@Module({
|
2022-04-22 13:36:18 -05:00
|
|
|
imports: [
|
2022-05-30 21:28:05 -05:00
|
|
|
InstitucionModule,
|
2022-05-01 17:03:37 -05:00
|
|
|
InstitucionCarreraModule,
|
2022-05-31 14:26:57 -05:00
|
|
|
InstitucionProgramaModule,
|
2022-06-01 14:50:33 -05:00
|
|
|
TypeOrmModule.forFeature([CarreraPrograma]),
|
2022-04-22 13:36:18 -05:00
|
|
|
],
|
2022-03-31 14:33:11 -06:00
|
|
|
controllers: [CarreraProgramaController],
|
2022-04-04 20:02:54 -05:00
|
|
|
providers: [CarreraProgramaService],
|
2022-03-31 14:33:11 -06:00
|
|
|
})
|
|
|
|
|
export class CarreraProgramaModule {}
|