This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { Repository, DataSource } from 'typeorm';
|
||||
import { KeyHandoutPdfDataEntity } from '../entitites';
|
||||
|
||||
@Injectable()
|
||||
export class KeyHandoutPdfDataEntityRepository extends Repository<KeyHandoutPdfDataEntity> {
|
||||
constructor(dataSource: DataSource) {
|
||||
super(KeyHandoutPdfDataEntity, dataSource.createEntityManager());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user