public ActionResult <OrderItemsModel> Get(int orderID) { try { return(_orderItemsService.Get(orderID)); } catch (Exception ex) { return(NotFound()); } }
public OrderItemsModel Get(int orderID) { return(_orderItemsService.Get(orderID)); }