protected virtual void SelectImpuestoAction()
        {
            ImpuestoSelectForm form = new ImpuestoSelectForm(this);

            if (form.ShowDialog(this) == DialogResult.OK)
            {
                ImpuestoInfo source = (ImpuestoInfo)form.Selected;

                _entity.OidImpuesto = source.Oid;
                _entity.PImpuestos  = source.Porcentaje;
                _entity.CalculateTotal();
            }
        }