private void LoginCommand_Executed() { var crmLoginVM = ViewModelLocator.Current.CrmLoginVM; crmLoginVM.Login = passwordService.Login; crmLoginVM.Password = passwordService.Password; crmLoginVM.SourcePlugin = this; navigationService.NavigateTo(Location.Login); }
private void HelpCommand_Executed() { navigationService.NavigateTo(Location.Help); }
private void BackCommand_Executed() { navigationService.NavigateTo(Location.Main); }
private void LoginCommand_Executed() { SourcePlugin?.CheckConnection(Login, Password); navigationService.NavigateTo(Location.Main); }