public NoitruGoinhapvienCollection FetchByQuery(Query qry)
        {
            NoitruGoinhapvienCollection coll = new NoitruGoinhapvienCollection();

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 4
0
 public NoitruGoinhapvienCollection FetchByQuery(Query qry)
 {
     NoitruGoinhapvienCollection coll = new NoitruGoinhapvienCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }