added alumno_inscrito and others Ep

This commit is contained in:
2025-09-24 11:04:08 -04:00
parent c39faa513b
commit 86ccf98479
16 changed files with 230 additions and 23 deletions
+5
View File
@@ -21,5 +21,10 @@ export class AlumnoController {
findOne(@Param('id') id: number) {
return this.alumnoService.findOne(+id);
}
@Post('/create')
async newStudent(@Body() createStudentDto: CreateStudentDto) {
return this.alumnoService.create(createStudentDto);
}
}
//IO