public void EliminarTest() { bool paso = false; paso = FacturasBLL.Eliminar(0); Assert.AreEqual(paso, true); }
private void EliminarButton_Click(object sender, EventArgs e) { if (!ExisteEnLaBaseDeDatos()) { MyErrorProvider.SetError(FacturaIdNumericUpDown, "No existe una factura con este código!"); return; } else { if (MessageBox.Show("¿Está seguro de que desea eliminar esta factura?", "Advertencia", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) == DialogResult.OK) { MyErrorProvider.Clear(); int id; int.TryParse(FacturaIdNumericUpDown.Text, out id); if (FacturasBLL.Eliminar(id)) { MessageBox.Show("La factura fue eliminada de manera exitosa", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); Limpiar(); } } else { MessageBox.Show("La factura no pudo ser eliminada!", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } } }
public void EliminarTest() { FacturasBLL repositorio = new FacturasBLL(); int id = 2; bool paso = FacturasBLL.Eliminar(id); Assert.AreEqual(true, paso); }
public void EliminarTest() { bool paso; int id = 3; paso = FacturasBLL.Eliminar(id); Assert.AreEqual(paso, false); }
private void buttonEliminar_Click(object sender, EventArgs e) { if (UtilidadesFormularios.Validar(maskedTextBoxId)) { int id = int.Parse(maskedTextBoxId.Text); if (FacturasBLL.Buscar(x => x.FacturaId == id, false)) { FacturasBLL.Eliminar(FacturasBLL.facturaReturned); LimpiarFactura(); } } }
private void EliminarBtn(object sender, RoutedEventArgs e) { int id; int.TryParse(facturaIdTextBox.Text, out id); if (FacturasBLL.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(object sender, EventArgs e) { Facturas facturas = FacturasBLL.Buscar((int)IdNumericUpDown.Value); if (facturas != null) { FacturasBLL.Eliminar(facturas.FacturaId); //EliminarTotal(); MessageBox.Show("Eliminado Correctamente", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); NuevoButton.PerformClick(); } else { MessageBox.Show("No Se Puso Eliminar", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Stop); } }
protected void EliminarButton_Click(object sender, EventArgs e) { FacturasBLL repositorio = new FacturasBLL(); int id = Utils.ToInt(FacturaIdTextbox.Text); var factura = FacturasBLL.Buscar(id); if (factura != null) { if (FacturasBLL.Eliminar(id)) { Utils.ShowToastr(this, "Eliminado", "Exito", "success"); Limpiar(); } else { Utils.ShowToastr(this, "No se pudo eliminar", "Error", "error"); } } else { Utils.ShowToastr(this, "No existe", "Error", "error"); } }