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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public BdsDonanteCollection FetchAll()
        {
            BdsDonanteCollection coll = new BdsDonanteCollection();
            Query qry = new Query(BdsDonante.Schema);

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