Exemplo n.º 1
0
 private void RequestHotelBooking(object s, HotelSelectedEventArgs e)
 {
     hotelBookingPresenter.RequestHotelBooking(e.Index);
 }
Exemplo n.º 2
0
 private void RequestViewHotelRoomDetails(object s, HotelSelectedEventArgs e)
 {
     hotelRoomDetailsPresenter.RequestViewHotelRoomDetails(e.Index);
 }
Exemplo n.º 3
0
 private void ViewSelectedHotel(object sender, HotelSelectedEventArgs e)
 {
     RequestViewHotelDetails?.Invoke(sender, e);
     QueryHotels(sender, e);
 }