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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
 public KcbChidinhclCollection FetchAll()
 {
     KcbChidinhclCollection coll = new KcbChidinhclCollection();
     Query qry = new Query(KcbChidinhcl.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
        public KcbChidinhclCollection FetchAll()
        {
            KcbChidinhclCollection coll = new KcbChidinhclCollection();
            Query qry = new Query(KcbChidinhcl.Schema);

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