示例#1
0
        public void LlenarImporte()
        {
            int precio, cantidad;


            precio   = ToInt(PreciotextBox.Text);
            cantidad = ToInt(CantidadnumericUpDown.Value);

            importetextBox.Text = FacturacionBLL.CacularImporte(precio, cantidad).ToString();
        }