//METODO PARA ELIMINAR UN CONTACTO private async void BtnEliminar_Clicked(object sender, EventArgs e) { var dbpath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Contacto.db3"); var db = new SQLiteConnection(dbpath); var myquery = db.Table <DBContacto>().Where(consult => consult.Id == Detalle.llave).FirstOrDefault(); Detalle.ConvertirTextoAVoz("Seguro que quieres eliminar"); bool opc = await DisplayAlert("Mensaje", "¿Seguro que quieres eliminar?", "Si", "Cancelar"); if (opc == true) { db.Query <DBContacto>("DELETE FROM DBContacto WHERE Id = ?", myquery.Id); var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("El contacto se ha eliminado"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); await Navigation.PopAsync(); } else { await Navigation.PopAsync(); } Detalle.listaContacto.ItemsSource = Detalle.LlenarLista(); }
//METODO PARA ACTUALIZAR UN CONTACTO private async void BtnActualizar_Clicked(object sender, EventArgs e) { var dbpath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Contacto.db3"); var db = new SQLiteConnection(dbpath); var myquery = db.Table <DBContacto>().Where(consult => consult.Id == Detalle.llave).FirstOrDefault(); bool opc = await DisplayAlert("Mensaje", "¿Seguro que quieres editar?", "Si", "Cancelar"); if (opc == true) { string nombre = NombresTxt.Text; string apellido = ApellidosTxt.Text; string telefono = TelefonoTxt.Text; string mail = EmailTxt.Text; db.Query <DBContacto>("UPDATE DBContacto SET Nombre=?, Apellido=?, Telefono=?, Email=? WHERE Id = ?", nombre, apellido, telefono, mail, myquery.Id); var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("El contacto ha sido actualizado"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje", servicioM, "Ok"); await Navigation.PopAsync(); } else { await Navigation.PopAsync(); } Detalle.listaContacto.ItemsSource = Detalle.LlenarLista(); }
public DetalleContacto() { InitializeComponent(); BtnCrear.IsVisible = true; BtnActualizar.IsVisible = false; BtnEliminar.IsVisible = false; estadoVentanaLbl.Text = "Nuevo contacto"; Detalle.ConvertirTextoAVoz("Accediendo a crear nuevo contacto"); }
public async Task Delete(string id) { HttpClient cliente = await Detalle.getConection(); await cliente.DeleteAsync(Detalle.url + "/" + id); var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Contacto eliminado"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); }
public async Task Update(string id, string firstname, string lastname, string phoneNumber, string email) { ContactoAPI contact = new ContactoAPI() { Id = id, firstname = firstname, lastname = lastname, phoneNumber = phoneNumber, email = email }; System.Diagnostics.Debug.Write(id + " HOLA MUNDO"); HttpClient cliente = await Detalle.getConection(); await cliente.PutAsync(Detalle.url + "/" + id, new StringContent(JsonConvert.SerializeObject(contact), Encoding.UTF8, "application/json")); }
public async Task <ContactoAPI> Post(string id, string firstname, string lastname, string phoneNumber, string email) { ContactoAPI contact = new ContactoAPI() { Id = "", firstname = firstname, lastname = lastname, phoneNumber = phoneNumber, email = email }; HttpClient cliente = await Detalle.getConection(); var response = await cliente.PostAsync(Detalle.url, new StringContent(JsonConvert.SerializeObject(contact), Encoding.UTF8, "application/json")); return(JsonConvert.DeserializeObject <ContactoAPI>(await response.Content.ReadAsStringAsync())); }
private async void CrearContacto(object sender, EventArgs e) { if (String.IsNullOrEmpty(NombresTxt.Text) || String.IsNullOrEmpty(ApellidosTxt.Text) || String.IsNullOrEmpty(TelefonoTxt.Text) || String.IsNullOrEmpty(EmailTxt.Text)) { var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Los campos están vacios"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); } else { var x = await Post("", NombresTxt.Text, ApellidosTxt.Text, TelefonoTxt.Text, EmailTxt.Text); var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Contacto creado"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); Detalle.ObtenerContactos(); } }
//METODO PARA INSERTAR UN NUEVO CONTACTO private async void BtnCrear_Clicked(object sender, EventArgs e) { if (String.IsNullOrEmpty(NombresTxt.Text) || String.IsNullOrEmpty(ApellidosTxt.Text) || String.IsNullOrEmpty(TelefonoTxt.Text) || String.IsNullOrEmpty(EmailTxt.Text)) { var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Hay varios campos vacios"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); } else { var dbpath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Contacto.db3"); var db = new SQLiteConnection(dbpath); db.CreateTable <DBContacto>(); var contacto = new DBContacto() { Nombre = NombresTxt.Text, Apellido = ApellidosTxt.Text, Telefono = TelefonoTxt.Text, Email = EmailTxt.Text, }; var res = db.Insert(contacto); if (res > 0) { var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Contacto guardado"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); await Navigation.PopAsync(); } else { var servicioM = DependencyService.Get <InterfazMensaje>().GetMensaje("Error al guardar"); Detalle.ConvertirTextoAVoz(servicioM); await DisplayAlert("Mensaje Dependency", servicioM, "Ok"); await Navigation.PopAsync(); } Detalle.listaContacto.ItemsSource = Detalle.LlenarLista(); } }
//METODO QUE MUESTRA LOS DATOS DEL CONTACTO public DetalleContacto(int id) { InitializeComponent(); var dbpath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Contacto.db3"); var db = new SQLiteConnection(dbpath); var myquery = db.Table <DBContacto>() .Where( consult => consult.Id == id ).FirstOrDefault(); if (myquery != null) { NombresTxt.Text = myquery.Nombre; ApellidosTxt.Text = myquery.Apellido; TelefonoTxt.Text = myquery.Telefono; EmailTxt.Text = myquery.Email; BtnCrear.IsVisible = false; BtnActualizar.IsVisible = true; BtnEliminar.IsVisible = true; estadoVentanaLbl.Text = "Detalles del contacto"; Detalle.ConvertirTextoAVoz("Accediendo a detalle contacto"); } }
private async void EliminarContacto(object sender, EventArgs e) { await Delete(IdTxt); Detalle.ObtenerContactos(); }