Ejemplo n.º 1
0
        private void GoToAccount()
        {
            AccountServiceReference.Person me   = accountService.GetAccountIfromationAsync(Account.GetInstace().Session).Result;
            Account.GetInstace().UserName       = me.UserName;
            Account.GetInstace().FirstName      = me.FirstName;
            Account.GetInstace().LastName       = me.LastName;
            Account.GetInstace().Phone          = me.Phone;
            Account.GetInstace().Email          = me.Email;
            NavigationService navigationService = new NavigationService();

            navigationService.NavigateHomePageTo(typeof(AccountPage));
        }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <bool> SetChangesAsync(AccountServiceReference.Person account, string sessionid)
 {
     return(base.Channel.SetChangesAsync(account, sessionid));
 }