Exemple #1
0
 public RoomBookingDateWiseDTO[] GetWaitListedBookings(DateTime StartDate, DateTime EndDate, int notThisBookingId, int AccomId)
 {
     try
     {
         if (bookingHelper == null)
         {
             bookingHelper = new BookingHelper();
         }
         return(bookingHelper.GetWaitListedBookings(StartDate, EndDate, notThisBookingId, AccomId));
     }
     catch (Exception exp)
     {
         throw exp;
     }
 }