/// <summary>
        /// The handler for the Terminology Manager objects 'Initialized' event.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="BaseTerminologyEventArgs"/> instance containing the event data.</param>
        private void TerminologyManagerInitialized(object sender, BaseTerminologyEventArgs e)
        {
            if (e.Successful)
            {
                this.connected       = true;
                this.StatusText.Text = string.Empty;
            }
            else
            {
                this.StatusText.Text = SingleConceptMatchingPage.ConnectionErrorText;
            }

            this.SingleConceptMatching.IsEnabled = true;
            this.HideProgressBar();
        }
        /// <summary>
        /// The handler for the Terminology Manager objects 'Initialized' event.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="BaseTerminologyEventArgs"/> instance containing the event data.</param>
        private void TerminologyManagerInitialized(object sender, BaseTerminologyEventArgs e)
        {
            if (e.Successful)
            {
                this.connected = true;
                this.StatusText.Text = string.Empty;
            }
            else
            {
                this.StatusText.Text = SingleConceptMatchingPage.ConnectionErrorText;
            }

            this.SingleConceptMatching.IsEnabled = true;
            this.HideProgressBar();
        }