Example #1
0
        public ATaxPhylumCollection FetchByQuery(Query qry)
        {
            ATaxPhylumCollection coll = new ATaxPhylumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public ATaxPhylumCollection FetchAll()
        {
            ATaxPhylumCollection coll = new ATaxPhylumCollection();
            Query qry = new Query(ATaxPhylum.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #3
0
        public ATaxPhylumCollection FetchByID(object PhyRecID)
        {
            ATaxPhylumCollection coll = new ATaxPhylumCollection().Where("PhyRecID", PhyRecID).Load();

            return(coll);
        }