You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
applestore/something.txt

4 lines
222 B

@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);
}