Ejemplo n.º 1
0
        public DDTakingCollection FetchByQuery(Query qry)
        {
            DDTakingCollection coll = new DDTakingCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public DDTakingCollection FetchAll()
        {
            DDTakingCollection coll = new DDTakingCollection();
            Query qry = new Query(DDTaking.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public DDTakingCollection FetchByID(object TakingID)
        {
            DDTakingCollection coll = new DDTakingCollection().Where("TakingID", TakingID).Load();

            return(coll);
        }