2022-04-04 20:02:54 -05:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-04-04 20:53:32 -05:00
|
|
|
import { Repository } from 'typeorm';
|
|
|
|
|
import { InjectRepository } from '@nestjs/typeorm';
|
|
|
|
|
import { CarreraPrograma } from './carrera-programa.entity';
|
2022-04-04 20:02:54 -05:00
|
|
|
|
|
|
|
|
@Injectable()
|
2022-04-04 20:53:32 -05:00
|
|
|
export class CarreraProgramaService {
|
|
|
|
|
constructor(
|
|
|
|
|
@InjectRepository(CarreraPrograma)
|
|
|
|
|
private repository: Repository<CarreraPrograma>,
|
|
|
|
|
) {}
|
|
|
|
|
}
|