private void btnCargarCliente_Click(object sender, EventArgs e) { String id = dgvClientes.SelectedCells[0].Value.ToString(); INuevoPedido formInterface = this.Owner as INuevoPedido; if (formInterface != null) { formInterface.ChangeClientes(id); this.Close(); } }
private void btnAceptar_Click(object sender, EventArgs e) { String id = txtRefArticulo.Text; String nombre = txtNombreArticulo.Text; String cantidad = txtCantidad.Text; String precioVenta = txtPrecioVenta.Text; decimal precioT = Convert.ToDecimal(cantidad) * Convert.ToDecimal(precioVenta); String precioTotal = Convert.ToString(precioT); INuevoPedido nuevoArtInterface = this.Owner as INuevoPedido; if (nuevoArtInterface != null) { nuevoArtInterface.cargarArticuloNuevo(id, nombre, cantidad, precioVenta, precioTotal); this.Close(); } }