コード例 #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);
        }