public void AddListHistori2(string strseq, string stridnum, string stridnum2, string stridnum3, string strnorek, string strtgltran, string strtglefektif, string strjamtran,
                                    string strkodetran, string strdesktran, string strsaldoawalmutasi, string strmutasidebet, string strmutasikredit, string strsaldoakhirmutasi, string strtruser, string strglsign,
                                    string strterbilang, string strtrremk, string strauxtrc, string strserial, string strtlbds1, string strtlbds2)
        {
            HistoriTransaksi histori = new HistoriTransaksi();

            histori._SEQ              = strseq;
            histori._IDNUM            = stridnum;
            histori._IDNUM2           = stridnum2;
            histori._IDNUM3           = stridnum3;
            histori._NOREK            = strnorek;
            histori._TGLTRAN          = strtgltran;
            histori._TGLEFEKTIF       = strtglefektif;
            histori._JAMTRAN          = strjamtran;
            histori._KODETRAN         = strkodetran;
            histori._DESKTRAN         = strdesktran;
            histori._SALDOAWALMUTASI  = strsaldoawalmutasi;
            histori._MUTASIDEBET      = strmutasidebet;
            histori._MUTASIKREDIT     = strmutasikredit;
            histori._SALDOAKHIRMUTASI = strmutasikredit;
            histori._TRUSER           = strtruser;
            histori._GLSIGN           = strglsign;
            histori._TERBILANG        = strterbilang;
            histori._TRREMK           = strtrremk;
            histori._AUXTRC           = strauxtrc;
            histori._SERIAL           = strserial;
            histori._TLBDS1           = strtlbds1;
            histori._TLBDS2           = strtlbds2;
        }
        public void AddListHistori(string strid, string strjenis, string strnominal, string strketerangan, string strkodetransaksi, string strtanggal, string strsecurity)
        {
            HistoriTransaksi histori = new HistoriTransaksi();

            histori._TransactionID  = strid;
            histori._JenisTransaksi = strjenis;
            histori._Nominal        = strnominal;
            histori._Keterangan     = strketerangan;
            histori._KodeTransaksi  = strkodetransaksi;
            histori._Tanggal        = strtanggal;
            histori._SecurityCode   = strsecurity;
            _listhistori.Add(histori);
        }