@Patch('data/edit/:id') updateProduct (@Param('id') id: number, @Body('name') name: string, @Body('sku') sku: string, @Body('price') price: number) { return this.csvService.editData(id, name, sku, price); }