Example #1
0
        public void Run()
        {
            if (_validator.IsArgsEmpty())
            {
                _logger.Info("Running without args.");
                RunWithoutArgs();
            }
            else
            {
                _logger.Info("Running with args.");
                RunWithArgs();
            }

            ConsoleUI.PressKeyToContinue(StringConstants.PRESS_KEY_TO_CONTINUE);
        }