public ModeloInventario()
 {
     this.Cantidad                = string.Empty;
     this.Periodo                 = string.Empty;
     this.Estado                  = string.Empty;
     this.CodigoActivo            = string.Empty;
     this.CodigoInventario        = string.Empty;
     this.Inventario              = new Inventario();
     this.ListaActivo             = ActivoFijoBL.ListarActivosDeMaestro();
     this.ListaInventario         = InventarioBL.ListarInventario();
     this.ListaInventarioFiltrada = ListaInventario;
 }