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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public DDPawnageInfoCollection FetchByID(object PawnageID)
        {
            DDPawnageInfoCollection coll = new DDPawnageInfoCollection().Where("PawnageID", PawnageID).Load();

            return(coll);
        }