VSTalk.Engine.ViewModel.Editors.ClientEditor.ClientEditorViewModel.SaveChangesCanExecute C# (CSharp) Method

SaveChangesCanExecute() private method

private SaveChangesCanExecute ( ) : bool
return bool
        private bool SaveChangesCanExecute()
        {
            return !string.IsNullOrEmpty(Client.Login) &&
                   !string.IsNullOrEmpty(Client.Password) &&
                   !string.IsNullOrEmpty(Client.Server);
        }