public async void GetRecoverNum(string Country, Label RecoverLbl) { var recoverNum = await CAPI.ReturnRecovered(Country); RecoverLbl.Text = Convert.ToString(recoverNum); }
public async Task <int> Recovered(string country) { var a = await CAPI.ReturnRecovered(country); return(a); }