(conductorId: string)
| 86 | } |
| 87 | |
| 88 | async removeConductor(conductorId: string) { |
| 89 | return this.prismaService.conductor.delete({ |
| 90 | where: { |
| 91 | id: conductorId, |
| 92 | }, |
| 93 | }); |
| 94 | } |
| 95 | |
| 96 | async createSchedule(schedule: any) { |
| 97 | const bus = await this.prismaService.bus.findFirst({ |
nothing calls this directly
no outgoing calls
no test coverage detected