예제 #1
0
        public PnIndicadoresInCollection FetchByQuery(Query qry)
        {
            PnIndicadoresInCollection coll = new PnIndicadoresInCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public PnIndicadoresInCollection FetchAll()
        {
            PnIndicadoresInCollection coll = new PnIndicadoresInCollection();
            Query qry = new Query(PnIndicadoresIn.Schema);

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