Exemplo n.º 1
0
        private void btn_edit_Click(object sender, EventArgs e)
        {
            int?id = getId();

            if (id != null)
            {
                sub_frm.modal_producto modal = new sub_frm.modal_producto(id);
                modal.ShowDialog();
                dtg_productos.DataSource = productos.Consultar();
            }
        }
Exemplo n.º 2
0
 private void btn_crear_Click(object sender, EventArgs e)
 {
     sub_frm.modal_producto modal = new sub_frm.modal_producto();
     modal.ShowDialog();
     dtg_productos.DataSource = productos.Consultar();
 }