Beispiel #1
0
        public CthdCollection FetchByQuery(Query qry)
        {
            CthdCollection coll = new CthdCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public CthdCollection FetchAll()
        {
            CthdCollection coll = new CthdCollection();
            Query          qry  = new Query(Cthd.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public CthdCollection FetchByID(object MaCTHd)
        {
            CthdCollection coll = new CthdCollection().Where("MaCT_HD", MaCTHd).Load();

            return(coll);
        }