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);
        }
Exemplo n.º 3
0
        public PnLogEventoCollection FetchByID(object IdLog)
        {
            PnLogEventoCollection coll = new PnLogEventoCollection().Where("id_log", IdLog).Load();

            return(coll);
        }