private void Show_Flight_Button_Click(object sender, RoutedEventArgs e)
        {
            long flightId = 0;

            long.TryParse(ShowFlightTxtBx.Text, out flightId);
            ShownFlight = anonymousUserFacade.GetFlight(flightId);
        }