Creacion de entities y DTOs

This commit is contained in:
2025-09-14 17:51:17 -06:00
parent 3481d76d38
commit 0273204d37
7 changed files with 70 additions and 23 deletions
+3
View File
@@ -1,8 +1,11 @@
import { Module } from '@nestjs/common';
import { StudentService } from './student.service';
import { StudentController } from './student.controller';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Student } from './entities/student.entity';
@Module({
imports: [TypeOrmModule.forFeature([Student])],
controllers: [StudentController],
providers: [StudentService],
})