Ejemplo n.º 1
0
        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();
        }