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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }