(@Param('id') id: string, @Body() updateOrderDto: UpdateOrderDto)
| 39 | |
| 40 | @Patch(':id') |
| 41 | update(@Param('id') id: string, @Body() updateOrderDto: UpdateOrderDto) { |
| 42 | return this.ordersService.update(id, updateOrderDto); |
| 43 | } |
| 44 | |
| 45 | @HttpCode(204) |
| 46 | @Delete(':id') |
no outgoing calls
no test coverage detected