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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
 public KcbThanhtoanCollection FetchAll()
 {
     KcbThanhtoanCollection coll = new KcbThanhtoanCollection();
     Query qry = new Query(KcbThanhtoan.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 3
0
        public KcbThanhtoanCollection FetchAll()
        {
            KcbThanhtoanCollection coll = new KcbThanhtoanCollection();
            Query qry = new Query(KcbThanhtoan.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
 public KcbThanhtoanCollection FetchByQuery(Query qry)
 {
     KcbThanhtoanCollection coll = new KcbThanhtoanCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }