public PnIndicadoresGlobaleCollection FetchByQuery(Query qry)
        {
            PnIndicadoresGlobaleCollection coll = new PnIndicadoresGlobaleCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public PnIndicadoresGlobaleCollection FetchAll()
        {
            PnIndicadoresGlobaleCollection coll = new PnIndicadoresGlobaleCollection();
            Query qry = new Query(PnIndicadoresGlobale.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public PnIndicadoresGlobaleCollection FetchByID(object IdIndicadoresGlobales)
        {
            PnIndicadoresGlobaleCollection coll = new PnIndicadoresGlobaleCollection().Where("id_indicadores_globales", IdIndicadoresGlobales).Load();

            return(coll);
        }