コード例 #1
0
ファイル: MainPage.xaml.cs プロジェクト: kfwls/GTRhacktastic
 private async Task<Dictionary<string, PersonReportCard>> GetPeople(string expertIs, string expertFor)
 {
     var fapi = new ApiInteract();
     Dictionary<string, PersonReportCard> register = await fapi.GetPeople(expertFor);
     return register;
 }
コード例 #2
0
ファイル: MainPage.xaml.cs プロジェクト: kfwls/GTRhacktastic
 private async void Search(string expertIs, string expertFor)
 {
     var fapi = new ApiInteract();
     DumpBlock.Text = await fapi.ApiSearch(expertFor);
 }