public async Task<IActionResult> MyReservation()
        {
            var currentUser = await userManager.GetUserAsync(HttpContext.User);
            var reservations = await reservationService.FindReservationByReservationIdAsync(currentUser.Id);
            var taxiReservation = await taxiReservationService.FindTaxiReservationByUserIdAsync(currentUser.Id);
            var hotel = hotelService.GetHotels();

            return View(new IndexViewModel { Reservations = reservations, TaxiReservations = taxiReservation, HotelList = hotel, User = currentUser });
        }