예제 #1
0
 public IHttpActionResult GetBookingDetails(string ShipmentId, int Userid)
 {
     try
     {
         return(Ok(bookingManager.GetBookingDetails(ShipmentId, Userid)));
     }
     catch (Exception ex)
     {
         return(NotFound());
     }
 }