public void OnInputHelpAction(string input, ICommunication communication)
        {
            if (_commandListOutputView.ViewEnabled)
            {
                _commandListOutputView.ViewEnabled = false;
            }
            else if (!_commandListOutputView.ViewEnabled)
            {
                _commandListOutputView.ViewEnabled = true;
            }

            communication.Send(_clientDataPackageProvider.GetPackage("Help"));
        }
Exemple #2
0
 public void OnValidationRequestAction(DataPackage data, ICommunication communication)
 {
     communication.Send(_clientDataPackageProvider.GetPackage("ValidationAnswer"));
 }