Exemplo n.º 1
0
 private void Register()
 {
     if (String.IsNullOrWhiteSpace(User.UserName) || string.IsNullOrWhiteSpace(User.Password))
     {
         MessageBox.Show("You must fill the username and password fields.");
     }
     else
     {
         if (_userManager.InvokeRegister(User))
         {
             _navigationService.NavigateTo("Contacts");
         }
     }
 }