private void ShowOtherBookings(string RoomNo, DateTime StartDate, DateTime EndDate)
    {
        BookingRoomReportsDTO[] oBRRD = null;
        BookingReportServices   oBRM  = new BookingReportServices();

        oBRRD = oBRM.GetOtherBookingsOfThisRoom(RoomNo, StartDate, EndDate);
        if (oBRRD != null)
        {
            if (oBRRD.Length > 0)
            {
                PrepareBookingReport(oBRRD);
            }
        }
    }