fixed error
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { AdscripcionService } from './adscripcion.service';
|
||||
import { AdscripcionController } from './adscripcion.controller';
|
||||
import { Adscripcion } from './entities/adscripcion.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Adscripcion])],
|
||||
providers: [AdscripcionService],
|
||||
controllers: [AdscripcionController],
|
||||
})
|
||||
export class AdscripcionModule {}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { CategoriaService } from './categoria.service';
|
||||
import { CategoriaController } from './categiria.controller';
|
||||
import { Categoria } from './entities/categoria.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Categoria])],
|
||||
providers: [CategoriaService],
|
||||
controllers: [CategoriaController],
|
||||
})
|
||||
export class CategoriaModule {}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { EdificioService } from './edificio.service';
|
||||
import { EdificioController } from './edificio.controller';
|
||||
import { Edificio } from './entities/edificio.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([EdificioService])],
|
||||
providers: [EdificioService],
|
||||
controllers: [EdificioController],
|
||||
})
|
||||
export class EdificioServiceModule {}
|
||||
Reference in New Issue
Block a user