コード例 #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));
        }
コード例 #2
0
ファイル: Reference.cs プロジェクト: BeXeB/ThirdSemester
 public System.Threading.Tasks.Task <bool> SetChangesAsync(AccountServiceReference.Person account, string sessionid)
 {
     return(base.Channel.SetChangesAsync(account, sessionid));
 }