private void PrecionumericUpDown_ValueChanged(object sender, EventArgs e)
        {
            //------------- BUSCAR PROCENTAGE
            if (Convert.ToDecimal(PrecionumericUpDown.Value) != 0)// PORCENTTAGE
            {
                if (Convert.ToDecimal(CostonumericUpDown.Value) != 0)
                {
                    GanancianumericUpDown.Value = ArticulosBLL.PorcientoGanancia(Convert.ToDecimal(PrecionumericUpDown.Value), Convert.ToDecimal(CostonumericUpDown.Value));
                }
            }

            //--------------- BUSCAR COSTO
            if (Convert.ToDecimal(GanancianumericUpDown.Value) != 0)
            {
                if (Convert.ToDecimal(PrecionumericUpDown.Value) != 0)
                {
                    CostonumericUpDown.Value = ArticulosBLL.Costo(Convert.ToDecimal(PrecionumericUpDown.Value), Convert.ToDecimal(GanancianumericUpDown.Value));
                }
            }
        }
        private void GanancianumericUpDown_ValueChanged(object sender, EventArgs e)
        {
            //---------------BUSCAR PRECIO
            if (Convert.ToDecimal(GanancianumericUpDown.Value) != 0)
            {
                if (Convert.ToDecimal(CostonumericUpDown.Value) != 0)
                {
                    PrecionumericUpDown.Value = ArticulosBLL.Precio(Convert.ToDecimal(CostonumericUpDown.Value), Convert.ToDecimal(GanancianumericUpDown.Value));
                }
            }

            //--------------- BUSCAR COSTO
            if (Convert.ToDecimal(GanancianumericUpDown.Value) != 0)
            {
                if (Convert.ToDecimal(PrecionumericUpDown.Value) != 0)
                {
                    CostonumericUpDown.Value = ArticulosBLL.Costo(Convert.ToDecimal(PrecionumericUpDown.Value), Convert.ToDecimal(GanancianumericUpDown.Value));
                }
            }
        }