import { Injectable } from '@nestjs/common'; import { Repository, DataSource } from 'typeorm'; import { KeyHandoutPdfDataEntity } from '../entitites'; @Injectable() export class KeyHandoutPdfDataEntityRepository extends Repository { constructor(dataSource: DataSource) { super(KeyHandoutPdfDataEntity, dataSource.createEntityManager()); } }