private void CantidadtextBox_TextChanged(object sender, EventArgs e) { decimal cantidad = ToDecimal(CantidadtextBox.Text); decimal precio = ToDecimal(PreciotextBox.Text); ImportetextBox.Text = genericaRecepcionBLL.CalcularImporte(precio, cantidad).ToString(); }