private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { _productosBL.AgregarProducto(); listadeProductosBindingSource.MoveLast(); DeshabilitarHabilitarBotones(false); }
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { Productos.AgregarProducto(); listaProductosBindingSource.MoveLast(); HabilitarDeshabilitar(false); }
private void ToolstripButtonAgregar_Click(object sender, EventArgs e) { _productos.AgregarProducto(); listaProductosBindingSource.MoveLast(); DeshabilitarHabilitarBotones(false); }
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { _productos.AgregarProducto(); listaProductosBindingSource.MoveLast(); DeshabilitarHabilitarBotones(false); DeshabilitarHabilitarTextbox(true); listaProductosBindingNavigatorSaveItem.Enabled = true; }
public ActionResult Agregar(ProductosEN pEN) { _bl.AgregarProducto(pEN); // se pasan los parametros. return(RedirectToAction("Index")); }
public IActionResult Agregar(ProductosEn pEN) { _bl.AgregarProducto(pEN); return(RedirectToAction("ListaProductos")); }
public ActionResult Agregar2(Productos produc) { _bl.AgregarProducto(produc); return(RedirectToAction("Index")); }