private void Recursively_show_auto_matches_and_get_choices()
        {
            List <ConsoleLine> auto_matches = Reconciliator.Get_auto_matches_for_console();

            if (auto_matches.Count > 0)
            {
                Show_auto_matches(auto_matches);
                Act_on_choices_for_auto_matching();
            }
            else
            {
                _input_output.Output_line("Couldn't find any automatic matches for you, sorry.");
                _input_output.Output_line("");
            }
        }