public void Count_words(string text)
 {
     var(countTotal, countDistinct) = _bl.Count_words(text);
     _ui.Display_results(countTotal, countDistinct);
 }