import { PrismaClient } from '@prisma/client'; const prisma = new PrismaClient(); export class BillboardService { async getByPub(pubId: number) { return prisma.billboard.findMany({ where: { pubId, datetime: { gte: new Date() }, }, orderBy: { datetime: 'asc' }, }); } }