public int GetHotelReservationsCount()
 {
     return(_hotelReservationService.Queryable().Count());
 }
 // GET: api/Hotels
 public IQueryable <HotelReservation> GetHotelReservations()
 {
     return(_hotelReservationService.Queryable());
 }