public bool Execute()
        {
            ColorActions colorActions = new ColorActions();

            colorActions.ResetColor();
            return(false);
        }
예제 #2
0
        public BackgroundColorConsoleCommand(string color)
        {
            ColorActions colorActions = new ColorActions();

            colorActions.SetColor(color, false);
        }
        public ForegroundColorConsoleCommand(string color)
        {
            ColorActions colorActions = new ColorActions();

            colorActions.SetColor(color, true);
        }