Example #1
0
        private void LoginCommand_Executed()
        {
            var crmLoginVM = ViewModelLocator.Current.CrmLoginVM;

            crmLoginVM.Login        = passwordService.Login;
            crmLoginVM.Password     = passwordService.Password;
            crmLoginVM.SourcePlugin = this;

            navigationService.NavigateTo(Location.Login);
        }
Example #2
0
 private void HelpCommand_Executed()
 {
     navigationService.NavigateTo(Location.Help);
 }
 private void BackCommand_Executed()
 {
     navigationService.NavigateTo(Location.Main);
 }
Example #4
0
        private void LoginCommand_Executed()
        {
            SourcePlugin?.CheckConnection(Login, Password);

            navigationService.NavigateTo(Location.Main);
        }