예제 #1
0
 public IHttpActionResult Getoldbookings(int Userid)
 {
     try
     {
         return(Ok(bookingManager.GetOldBooking(Userid).ToList()));
     }
     catch (Exception ex)
     {
         return(Ok(ex));
     }
 }