import { PrismaService } from "../../infra/prisma/prisma.service";

export abstract class BaseRepository {
  protected constructor(protected readonly prisma: PrismaService) {}

  protected tenantWhere(companyId: string) {
    return { companyId };
  }
}
