Пример #1
0
        public AprNumeroDosiCollection FetchByQuery(Query qry)
        {
            AprNumeroDosiCollection coll = new AprNumeroDosiCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public AprNumeroDosiCollection FetchAll()
        {
            AprNumeroDosiCollection coll = new AprNumeroDosiCollection();
            Query qry = new Query(AprNumeroDosi.Schema);

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