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); } } }