Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 private async void Search(string expertIs, string expertFor)
 {
     var fapi = new ApiInteract();
     DumpBlock.Text = await fapi.ApiSearch(expertFor);
 }