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

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

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