Exemple #1
0
 public bool AllocateRoomsToWaitListedBooking(int BookingId, string RoomList, int RoomCategoryId, int RoomTypeId)
 {
     try
     {
         //RoomList is comma-seperated list of all the room no's.
         if (bookingHelper == null)
         {
             bookingHelper = new BookingHelper();
         }
         return(bookingHelper.AllocateRoomsToWaitListedBooking(BookingId, RoomList, RoomCategoryId, RoomTypeId));
     }
     catch (Exception exp)
     {
         throw exp;
     }
 }