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

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

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

            return(coll);
        }