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

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

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