public Gestion(Buscar.INotificarSeleccion ctrNotificaSelPrd)
        {
            _glistaPrd = ctrNotificaSelPrd;
            //
            _gestionDetalle         = new GestionDetalle();
            _gestionBusquedaPrd     = new Producto.Busqueda.Gestion();
            _gestionExistencia      = new Producto.Deposito.Listar.Gestion();
            _gestionAnalisisGeneral = new Analisis.General.Gestion();
            _gestionAnalisisGeneral.ItemSeleccionado += _gestionAnalisisGeneral_ItemSeleccionado;
            _gestionAnalisisDetallado  = new Analisis.Detallado.Gestion();
            _gestionAnalisisExistencia = new Analisis.Existencia.Gestion();
            miData = new Movimiento.data();

            lConcepto                 = new List <OOB.LibInventario.Concepto.Ficha>();
            lSucOrigen                = new List <OOB.LibInventario.Sucursal.Ficha>();
            lSucDestino               = new List <OOB.LibInventario.Sucursal.Ficha>();
            lDepartamento             = new List <OOB.LibInventario.Departamento.Ficha>();
            bsConcepto                = new BindingSource();
            bsSucOrigen               = new BindingSource();
            bsSucDestino              = new BindingSource();
            bsDepartamento            = new BindingSource();
            bsConcepto.DataSource     = lConcepto;
            bsSucOrigen.DataSource    = lSucOrigen;
            bsSucDestino.DataSource   = lSucDestino;
            bsDepartamento.DataSource = lDepartamento;
        }
 public Gestion()
 {
     _gestionAnalisisDetallado  = new Detallado.Gestion();
     _gestionAnalisisExistencia = new Existencia.Gestion();
     _gestionExistencia         = new Producto.Deposito.Listar.Gestion();
     _lstData       = new List <data>();
     _bs            = new BindingSource();
     _bs.DataSource = _lstData;
     Limpiar();
 }