import { ConfigService } from '@config/env.config'; import { Logger } from '@config/logger.config'; import { PrismaClient } from '@prisma/client'; export class Query { where?: T; sort?: 'asc' | 'desc'; page?: number; offset?: number; } export class PrismaRepository extends PrismaClient { constructor(private readonly configService: ConfigService) { super(); } private readonly logger = new Logger('PrismaRepository'); public async onModuleInit() { await this.$connect(); this.logger.info('Repository:Prisma - ON'); } public async onModuleDestroy() { await this.$disconnect(); this.logger.warn('Repository:Prisma - OFF'); } }