Exemple #1
0
 public IHttpActionResult GetBooked()
 {
     try
     {
         return(Ok(repo.GetBookedRooms()));
     }
     catch (Exception)
     {
         return(NotFound());
     }
 }