services
This commit is contained in:
@@ -1,4 +1,12 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { Repository } from 'typeorm';
|
||||
import { InjectRepository } from '@nestjs/typeorm';
|
||||
import { CarreraPrograma } from './carrera-programa.entity';
|
||||
|
||||
@Injectable()
|
||||
export class CarreraProgramaService {}
|
||||
export class CarreraProgramaService {
|
||||
constructor(
|
||||
@InjectRepository(CarreraPrograma)
|
||||
private repository: Repository<CarreraPrograma>,
|
||||
) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user