(private readonly prismaService: PrismaService)
| 5 | @Injectable() |
| 6 | export class TicketService { |
| 7 | constructor(private readonly prismaService: PrismaService) {} |
| 8 | async createTicket(orderId: string, passengerEmail: {emailID: string}[]) { |
| 9 | try { |
| 10 | const order = await this.prismaService.order.findUnique({ |
nothing calls this directly
no outgoing calls
no test coverage detected