private void ListItem_Click(object sender, EventArgs e)
        {
            Program            app = Program.GetInstance();
            ReservationService reservationService = app.GetService <ReservationService>("reservations");

            // Get the clicked item
            ListViewItem item = container.SelectedItems[0];

            if (item == null)
            {
                GuiHelper.ShowError("Geen item geselecteerd");
                return;
            }

            // Find the movie
            int         id          = (int)item.Tag;
            Reservation reservation = reservationService.GetReservationById(id);

            if (reservation == null)
            {
                GuiHelper.ShowError("Kon geen reservering vinden voor dit item");
                return;
            }

            // Show screen
            ReservationDetail reservationDetail = app.GetScreen <ReservationDetail>("reservationDetail");

            reservationDetail.SetReservation(reservation);
            app.ShowScreen(reservationDetail);
        }