Exemplo n.º 1
0
 public void AttemptLogin()
 {
     AuthClient = new AuthClient();
     AuthClient.Email = Email;
     AuthClient.Password = Password;
     if (AuthClient.AttemptLogin())
     {
         var couple = AuthClient.GetUsers();
         if (couple.CurrentUser != null)
         {
             NavigationService n = new NavigationService();
             n.NavigateTo(typeof(Avocado.Views.Activities), AuthClient);
         }
     }
 }