private async void actualizar_Clicked(object sender, EventArgs e) { if (nombre.Text != null) { if (rol.SelectedItem != null) { var Datos = new autenticados { Id = usuario_ID.Text, Nombre = nombre.Text, Rol = Convert.ToInt16(rol.SelectedIndex) }; //await Tabla.UpdateAsync(Datos); } else { await DisplayAlert("", "Seleccione un Rol", "OK"); } } else { await DisplayAlert("", "Ingrese un nombre", "OK"); } }
public async void Log_in_Clicked(object sender, EventArgs e) { if (Plugin.Connectivity.CrossConnectivity.Current.IsConnected) { usuario = await App.Authenticator.Authenticate(); if (App.Authenticator != null) { if (usuario != null) { string user = Convert.ToString(usuario.UserId); var datos = new autenticados { User_id = Convert.ToString(user), }; try { await Tabla.InsertAsync(datos); await Navigation.PushAsync(new Master()); } catch (Exception) { } finally { await Navigation.PushAsync(new Master()); } } } } else { await DisplayAlert("Sin Conexion", "Comprobar la conexion a internet", "OK"); } }