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