(private readonly ordersService: OrdersService)
| 21 | @Controller('orders') |
| 22 | export class OrdersController { |
| 23 | constructor(private readonly ordersService: OrdersService) {} |
| 24 | |
| 25 | @Post() |
| 26 | create(@Body() createOrderDto: CreateOrderDto) { |
nothing calls this directly
no outgoing calls
no test coverage detected