private void PreciotextBox_TextChanged(object sender, EventArgs e)
        {
            float costo  = ToFloat(CostotextBox.Text);
            float precio = ToFloat(PreciotextBox.Text);

            GananciatextBox.Text = ArticulosBLL.CalcularGanancia(costo, precio).ToString();
        }
Exemple #2
0
        private void CostoNumericUpDown_ValueChanged_1(object sender, EventArgs e)
        {
            decimal costo    = Convert.ToInt32(CostoNumericUpDown.Value);
            decimal precio   = Convert.ToInt32(PrecioNumericUpDown.Value);
            decimal ganancia = Convert.ToDecimal(GananciaNumericUpDown.Value);

            if (CostoNumericUpDown.Value < PrecioNumericUpDown.Value && GananciaNumericUpDown.Value == 0)
            {
                GananciaNumericUpDown.Value = ArticulosBLL.CalcularGanancia(costo, costo);
            }
            if (CostoNumericUpDown.Value > 0 && GananciaNumericUpDown.Value > 0 && PrecioNumericUpDown.Value == 0)
            {
                PrecioNumericUpDown.Value = ArticulosBLL.CalcularPrecio(costo, ganancia);
            }
        }
Exemple #3
0
        private void PrecioNumericUpDown_ValueChanged_1(object sender, EventArgs e)
        {
            decimal costo    = Convert.ToDecimal(CostoNumericUpDown.Value);
            decimal precio   = Convert.ToDecimal(PrecioNumericUpDown.Value);
            decimal ganancia = Convert.ToDecimal(GananciaNumericUpDown.Value);

            if (PrecioNumericUpDown.Value > CostoNumericUpDown.Value && GananciaNumericUpDown.Value == 0)
            {
                GananciaNumericUpDown.Value = ArticulosBLL.CalcularGanancia(costo, precio);
            }
            else
            if (PrecioNumericUpDown.Value > 0 && GananciaNumericUpDown.Value > 0 && CostoNumericUpDown.Value == 0)
            {
                CostoNumericUpDown.Value = ArticulosBLL.CalcularCosto(ganancia, precio);
            }
        }