add carrera

This commit is contained in:
2025-09-26 17:43:19 -06:00
parent 531ca5bdef
commit 7370e25e89
10 changed files with 79 additions and 24 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
import { Injectable, NotFoundException } from '@nestjs/common';
import { CreateStudentDto } from './dto/create-student.dto';
import { Alumno, Carrera } from './entities/student.entity';
import { Alumno } from './entities/student.entity';
import { EntityManager, Repository } from 'typeorm';
import { InjectRepository } from '@nestjs/typeorm';
import { Carrera } from 'src/carrera/entities/carrera.entity';
@Injectable()
export class AlumnoService {