Exemple #1
0
        public KcbThanhtoanPhanbotheoPTTTCollection FetchByQuery(Query qry)
        {
            KcbThanhtoanPhanbotheoPTTTCollection coll = new KcbThanhtoanPhanbotheoPTTTCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public KcbThanhtoanPhanbotheoPTTTCollection FetchAll()
        {
            KcbThanhtoanPhanbotheoPTTTCollection coll = new KcbThanhtoanPhanbotheoPTTTCollection();
            Query qry = new Query(KcbThanhtoanPhanbotheoPTTT.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public KcbThanhtoanPhanbotheoPTTTCollection FetchByID(object IdThanhtoan)
        {
            KcbThanhtoanPhanbotheoPTTTCollection coll = new KcbThanhtoanPhanbotheoPTTTCollection().Where("id_thanhtoan", IdThanhtoan).Load();

            return(coll);
        }