public void EliminarTest() { int id = 3; bool paso; paso = ProductoBLL.Eliminar(id); Assert.AreEqual(paso, true); }
private void EliminarButton_Click(object sender, RoutedEventArgs e) { if (ProductoBLL.Eliminar(productos.ProductoId)) { Limpiar(); MessageBox.Show("Eliminado", "Con Exito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show("Erro Al eliminar un Producto"); } }
private void EliminarButton_Click(object sender, EventArgs e) { if (ValidarEliminar()) { if (ProductoBLL.Eliminar(Convert.ToInt32(IdNumericUpDown.Value))) { MessageBox.Show("Registro Eliminado Correctamente!"); Limpiar(); return; } MessageBox.Show("Error al intentar eliminar el registro!"); } }
private void Button_Eliminar(object sender, RoutedEventArgs e) { int id; int.TryParse(IdTextbox.Text, out id); if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado con exito!!"); } else { MessageBox.Show("No se pudo Eliminar!!"); } }
private void eliminarButton_Click(object sender, RoutedEventArgs e) { int id; int.TryParse(idTextBox.Text, out id); if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado!!", "Existo", MessageBoxButton.OK, MessageBoxImage.Information); LimpiarCampos(); } else { MessageBox.Show("No se Elimino!!"); } }
private void EliminarButton_Click(object sender, RoutedEventArgs e) { int id; id = Convert.ToInt32(ProductoIdTextBox.Text); Limpiar(); if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado", "Exito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show(ProductoIdTextBox.Text, "No se puede eliminar una persona que no existe"); } }
private void EliminarButton_Click(object sender, RoutedEventArgs e) { int id; int.TryParse(ProductoIdTextBox.Text, out id); if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado con exito!!!", "ELiminado", MessageBoxButton.OK, MessageBoxImage.Information); Limpiar(); } else { MessageBox.Show(" No eliminado !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); } }
private void Eliminarbutton_Click_1(object sender, EventArgs e) { errorProvider.Clear(); if (!ValidarEliminar()) { return; } int id; int.TryParse(ProductoIDnumericUpDown.Text, out id); Limpiar(); if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { errorProvider.SetError(ProductoIDnumericUpDown, "No se puede eliminar un producto que no existe."); } }
private void EliminarButton_Click(object sender, EventArgs e) { int id = Convert.ToInt32(ProductoIdNumericUpDown.Value); Producto producto = ProductoBLL.Buscar(id); if (producto != null) { if (ProductoBLL.Eliminar(id)) { MessageBox.Show("Eliminado!!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); LimpiarObjetos(); } else { MessageBox.Show("No se pudo eliminar!!", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("No existe!!", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
public void EliminarTest() { var paso = ProductoBLL.Eliminar(4); Assert.AreEqual(paso, true); }