public TextRobot(UserInput userInput)
 {
     var wikipediaContent = fetchContentFromWikipedia(userInput);
 }
 static void Main(string[] args)
 {
     var userInput = new UserInput();
     var textRobot = new TextRobot(userInput);
     Console.ReadKey();
 }