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

            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;
 }
 public KcbThanhtoanCollection FetchByID(object IdThanhtoan)
 {
     KcbThanhtoanCollection coll = new KcbThanhtoanCollection().Where("id_thanhtoan", IdThanhtoan).Load();
     return coll;
 }
Exemplo n.º 6
0
        public KcbThanhtoanCollection FetchByID(object IdThanhtoan)
        {
            KcbThanhtoanCollection coll = new KcbThanhtoanCollection().Where("id_thanhtoan", IdThanhtoan).Load();

            return(coll);
        }