private void EliminarButton_Click(object sender, RoutedEventArgs e) { if (ProyectoBLL.Eliminar(Utilidades.Toint(ProyectoIdTextBox.Text))) { Limpiar(); MessageBox.Show("El Registro Fue Eliminado", "Exito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show("El Registro no pudo se eliminado", "ERROR", MessageBoxButton.OK, MessageBoxImage.Warning); } }
//Boton Eliminar private void EliminarButton_Click(object sender, RoutedEventArgs e) { { if (ProyectoBLL.Eliminar(Utilidades.ToInt(ProyectoIdTextBox.Text))) { Limpiar(); MessageBox.Show("Registro Eliminado", "Exito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show("No se pudo eliminar", "Error", MessageBoxButton.OK, MessageBoxImage.Warning); } } }