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