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

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

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