async void datosErrorGustos(string query) { do { Task <List <ObjetoError> > pl = ConsultaGustos.errorMisGustos(query); List <ObjetoError> p = await pl; error = p[0]; } while (error.Status.Equals("fallo")); datosGustos("query&id=" + Application.Current.Properties["id"]); }
async void datosGustos(string query) { Task <List <ObjetoGustosCompletos> > pl = ConsultaGustos.misGustos(query); List <ObjetoGustosCompletos> p = await pl; gustosCompletos = p[0]; var1Edit.Text = gustosCompletos.Primero; var2Edit.Text = gustosCompletos.Segundo; var3Edit.Text = gustosCompletos.Tercero; var4Edit.Text = gustosCompletos.Cuarto; var5Edit.Text = gustosCompletos.Quinto; acuarela.Text = gustosCompletos.Sexto; }
async void init(string query) { Task <List <ObjetoError> > pl = ConsultaGustos.actualizaGustos(query); List <ObjetoError> p = await pl; error = p[0]; if (error.Status.Equals("correcto")) { DependencyService.Get <IMessage>().LongAlert(error.Mensaje); await Navigation.PushAsync(new MainPage()); } else { DependencyService.Get <IMessage>().LongAlert(error.Mensaje); } }