Exemplo n.º 1
0
        public PnLogEventoCollection FetchByQuery(Query qry)
        {
            PnLogEventoCollection coll = new PnLogEventoCollection();

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

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