Ejemplo n.º 1
0
 public ActionResult <OrderItemsModel> Get(int orderID)
 {
     try
     {
         return(_orderItemsService.Get(orderID));
     }
     catch (Exception ex)
     {
         return(NotFound());
     }
 }
Ejemplo n.º 2
0
 public OrderItemsModel Get(int orderID)
 {
     return(_orderItemsService.Get(orderID));
 }