public RoomReservation[] GetReservations(DateTime fromDate,
                                          DateTime toDate)
 {
     using (var data = new RoomReservationsEntities())
     {
         return((from r in data.RoomReservations
                 where r.StartDate > fromDate && r.EndDate < toDate
                 select r).ToArray());
     }
 }