public void EliminarTest() { bool paso = false; paso = InventarioBLL.Eliminar(2); Assert.AreEqual(paso, true); }
private void Eliminarbutton_Click(object sender, EventArgs e) { MyErrorProvider.Clear(); int id; int.TryParse(IDnumericUpDown.Text, out id); Limpiar(); if (InventarioBLL.Eliminar(id)) { MessageBox.Show("Eliminado"); } else { MyErrorProvider.SetError(IDnumericUpDown, "No existe."); } }
public ActionResult EliminarItem(long ID) { if (!ModelState.IsValid) { return(View("Error", new Error() { Message = "Error in data" })); } if (this.IsAdminUserLoggedIn() == false) { return(View("AccesoDenegado")); } var Repo = new InventarioBLL(); Repo.Eliminar(ID); return(View("Inventario")); }