fixed foreign key and delete carrera

This commit is contained in:
2024-06-18 15:21:34 -06:00
parent ea0c8644b7
commit 6c63490acf
10 changed files with 22 additions and 104 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export class ProfesorController {
constructor(private profesorService: ProfesorService) {}
@Post()
async postRegister(@Body() data: profesorDto) {
async register(@Body() data: profesorDto) {
return this.profesorService.register(data);
}