protected override void NewLineaFomentoAction()
        {
            BatchList lista = BatchList.GetList(_entity.Partidas);

            BatchSelectForm form = new BatchSelectForm(this, lista);

            if (form.ShowDialog(this) == DialogResult.OK)
            {
                BatchInfo partida = form.Selected as BatchInfo;

                partida = lista.GetPartidaAgrupada(partida);

                try
                {
                    _entity.ExpedientesFomento.NewItem(_entity, partida);
                }
                catch (iQException ex)
                {
                    PgMng.ShowInfoException(ex);
                }
            }
        }