Files
ostan-complain-api/src/modules/reply/repositories/reply-attachment.repository.ts
T

11 lines
537 B
TypeScript

import { Injectable } from "@nestjs/common";
import { Repository } from "typeorm";
import { ReplyAttachment } from "../entities/reply-attachment.entity";
import { InjectRepository } from "@nestjs/typeorm";
@Injectable()
export class ReplyAttachmentRepository extends Repository<ReplyAttachment> {
constructor(@InjectRepository(ReplyAttachment) replyAttachmentRepository: Repository<ReplyAttachment>) {
super(replyAttachmentRepository.target, replyAttachmentRepository.manager, replyAttachmentRepository.queryRunner);
}
}