Read the following text and then complete the activities that follow.
.net code
public class OrdersController : ControllerBase
{
private readonly IOrderService _orderService;
public OrdersController(IOrderService orderService)
{
_orderService = orderService;
}
public IActionResult GetOrders(int customerId)
{
var orders = _orderService.GetOrdersByCustomer(customerId);
return Ok(orders);
}
}