public void AddListBuku(string strid, string strjenis, string strnominal, string strketerangan, string strkodetransaksi, string strtanggal, string strsecurity)
        {
            printBuku buku = new printBuku();

            buku._TransactionID  = strid;
            buku._JenisTransaksi = strjenis;
            buku._Nominal        = strnominal;
            buku._Keterangan     = strketerangan;
            buku._KodeTransaksi  = strkodetransaksi;
            buku._Tanggal        = strtanggal;
            buku._SecurityCode   = strsecurity;
            _listbuku.Add(buku);
        }
        public void AddListBuku2(string strsandi, string strbalance, string strtellerid, string strdate, string strmnecode, string strcredit, string strdebit, string strline, string strbranch)
        {
            printBuku buku = new printBuku();

            buku._Sandi                = strsandi;
            buku._PassbookBalance      = strbalance;
            buku._PassbookTellerID     = strtellerid;
            buku._PassbookDate         = strdate;
            buku._PassbookMNECode      = strmnecode;
            buku._PassbookCreditAmount = strcredit;
            buku._PassbookDebitAmount  = strdebit;
            buku._PassbookLine         = strline;
            buku._PassbookBranch       = strbranch;
            _listbuku.Add(buku);
        }