(contractor: any)
| 61 | return contractor; |
| 62 | } |
| 63 | async createContractor(contractor: any) { |
| 64 | return this.prismaService.contractor.create({ |
| 65 | data: { |
| 66 | ...contractor, |
| 67 | id: uuidv4(), |
| 68 | }, |
| 69 | }); |
| 70 | } |
| 71 | |
| 72 | async removeContractor(contractorId: string) { |
| 73 | return this.prismaService.contractor.delete({ |