public void StartApplication()
        {
            Configuration.MainController = this;
            AddToCartButton.Initialise();
            MVTHistory.SetCLI(ref _CLI);

            _CLI.ProgramStartWelcomeMessage();
            _CLI.SetCurrentController(this);
            _CLI.WaitingForCommand();
        }
 public Controller()
 {
     _CLI = new CommandLineInterface();
     _CLI.SetCurrentController(this);
     _TM = new TestManager(_CLI);
 }