new ep findSancion
This commit is contained in:
@@ -1,15 +1,18 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { forwardRef, Module } from '@nestjs/common';
|
||||
import { AlumnoService } from './student.service';
|
||||
import { AlumnoController } from './student.controller';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Alumno } from './entities/student.entity';
|
||||
import { Carrera } from 'src/carrera/entities/carrera.entity';
|
||||
import { AlumnoSancionModule } from 'src/alumno_sancion/alumno_sancion.module';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Alumno, Carrera])],
|
||||
imports: [TypeOrmModule.forFeature([Alumno, Carrera]),
|
||||
forwardRef(() => AlumnoSancionModule),
|
||||
],
|
||||
controllers: [AlumnoController],
|
||||
providers: [AlumnoService],
|
||||
exports: [AlumnoService],
|
||||
})
|
||||
export class AlumnoModule {}
|
||||
export class AlumnoModule { }
|
||||
//IO
|
||||
|
||||
Reference in New Issue
Block a user