示例#1
0
        public BdsIncidenciaExtraccionCollection FetchByQuery(Query qry)
        {
            BdsIncidenciaExtraccionCollection coll = new BdsIncidenciaExtraccionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public BdsIncidenciaExtraccionCollection FetchAll()
        {
            BdsIncidenciaExtraccionCollection coll = new BdsIncidenciaExtraccionCollection();
            Query qry = new Query(BdsIncidenciaExtraccion.Schema);

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