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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public CurrentTxCollection FetchAll()
        {
            CurrentTxCollection coll = new CurrentTxCollection();
            Query qry = new Query(CurrentTx.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public CurrentTxCollection FetchByID(object CurrentTxKey)
        {
            CurrentTxCollection coll = new CurrentTxCollection().Where("current_tx_key", CurrentTxKey).Load();

            return(coll);
        }