public ApplicationRuntime(IConsole console, BaseRuntime commandRuntime)
        {
            this.console = console;
            this.commandRuntime = commandRuntime;

            this.console.CancelKeyPressed += CancelKeyPressed;
        }
 public CommandRuntime(IConsole console, BaseRuntime questionRuntime)
 {
     this.console = console;
     this.questionRuntime = questionRuntime;
 }