public void GenerateHotelWiseRoom(String tour_id)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     objHotel.ConsolidateRooms(Convert.ToInt32(tour_id));
 }
 public void InsertHotelRoomAllocation(String booking_id)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     objHotel.InsertHotelNOSR(Convert.ToInt32(booking_id));
 }
 public void InsertNewHotel(String Tour_id, String Booking_Detail_id)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     objHotel.InsertNewHotel(Convert.ToInt32(Tour_id), Convert.ToInt32(Booking_Detail_id));
 }
 public void InsertUpdateRoom(ArrayList Room)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     objHotel.InsertUpdateRoomAllocation(Room);
 }
 public void InsertUpdateHotel(ArrayList Hotel)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     Hotel.Insert(20, Session["empid"].ToString());
     objHotel.InsertUpdateHotel(Hotel);
 }
 public void FinalizingRooms(String tour_id)
 {
     HotelRoomAllocation objHotel = new HotelRoomAllocation();
     objHotel.Finalize(Convert.ToInt32(tour_id));
 }