コード例 #1
0
        private void btnAgregarProd_Click(object sender, EventArgs e)
        {
            ProveedoresNegocio negocio = new ProveedoresNegocio();

            try
            {
                Proveedor proveedor = new Proveedor();
                proveedor.CUIT = Convert.ToInt32(txtCuit.Text);
                Producto producto = new Producto();
                producto.Id = Convert.ToInt32(dgvProductos.CurrentRow.Cells[0].Value.ToString());
                int precio = Convert.ToInt32(txtPrecio.Text);

                negocio.agregarProductoXProveedor(proveedor, producto, precio);

                txtPrecio.Text = "";
                MessageBox.Show("AGREGADO!");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }