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();
 }
 public Gestion(FiltrosGen.IAdmProducto ctrFiltrarProducto)
 {
     _gFiltrarProducto = ctrFiltrarProducto;
     //
     _gestionLista = new GestionLista();
     _gestionLista.CambioItemActual += _gestionLista_CambioItemActual;
     _gestionPrdExistencia           = new Producto.Deposito.Listar.Gestion();
     _gestionPrdPrecios              = new Producto.Precio.Ver.Gestion();
     _gestionHistoricoPrecio         = new Producto.Precio.Historico.Gestion();
     _gestionEditarPrecio            = new Producto.Precio.Editar.Gestion(new Producto.Precio.Editar.ModoSucursal.Gestion());
     _gestionHistoricoCosto          = new Producto.Costo.Historico.Gestion();
     _gestionPrdCosto        = new Producto.Costo.Ver.Gestion();
     _gestionEditarCosto     = new Producto.Costo.Editar.Gestion();
     _gestionQR              = new Producto.QR.Gestion();
     _gestionDeposito        = new Producto.Deposito.Asignar.Gestion();
     _gestionEditarFicha     = new Producto.AgregarEditar.Gestion(new Producto.AgregarEditar.Editar.Gestion());
     _gestionAgregarFicha    = new Producto.AgregarEditar.Gestion(new Producto.AgregarEditar.Agregar.Gestion());
     _gestionEstatus         = new Producto.Estatus.Gestion();
     _gestionKardex          = new Kardex.Movimiento.Gestion();
     _gestionImagen          = new Producto.Imagen.Gestion();
     _gestionProveedor       = new Producto.Proveedor.Gestion();
     _gestionVisualizarFicha = new Producto.VisualizarFicha.Gestion();
 }