Beispiel #1
0
        public PnLogEventoCollection FetchByQuery(Query qry)
        {
            PnLogEventoCollection coll = new PnLogEventoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public PnLogEventoCollection FetchAll()
        {
            PnLogEventoCollection coll = new PnLogEventoCollection();
            Query qry = new Query(PnLogEvento.Schema);

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