//--------------------------------------------------------------------------
        public void WordsQuery()
        {
            WordsQueryDialog documentsQuery = new WordsQueryDialog(_businessLogic);
            DialogResult     result         = documentsQuery.ShowDialog();

            if (result != DialogResult.OK)
            {
                return;
            }
        }