()
| 47 | return conductor; |
| 48 | } |
| 49 | async getContractors() { |
| 50 | return this.prismaService.contractor.findMany({}); |
| 51 | } |
| 52 | async getContractorById(contractorId: string) { |
| 53 | const contractor = await this.prismaService.contractor.findFirst({ |
| 54 | where: { |
no outgoing calls
no test coverage detected