private void btbINGRESARPRODUCTO_Click(object sender, EventArgs e) { AgregarProducto agregarProducto = new AgregarProducto(); agregarProducto.ShowDialog(); DisplayProducto(); }
private void btnEditar_Click(object sender, EventArgs e) { int?id = GetId(); if (id != null) { AgregarProducto agregarProducto = new AgregarProducto(id); agregarProducto.ShowDialog(); DisplayProducto(); } }