Exemple #1
0
        public DespatchNotePalletIdCollection FetchByQuery(Query qry)
        {
            DespatchNotePalletIdCollection coll = new DespatchNotePalletIdCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public DespatchNotePalletIdCollection FetchAll()
        {
            DespatchNotePalletIdCollection coll = new DespatchNotePalletIdCollection();
            Query qry = new Query(DespatchNotePalletId.Schema);

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