public List <ITransaction> GetTransactions(IBankAccount account, DateTime start, DateTime end)
        {
            var acc = (AqBankAccount)GetAccountByIdentifier(account.AccountIdentifier);
            var job = new AqGetTransactionsJob(acc, this.abHandle);

            job.FromTime = start;
            job.ToTime   = end;
            job.Perform();
            return(job.Transactions);
        }
 public List<ITransaction> GetTransactions(IBankAccount account, DateTime start, DateTime end)
 {
     var acc = (AqBankAccount)GetAccountByIdentifier (account.AccountIdentifier);
     var job = new AqGetTransactionsJob (acc, this.abHandle);
     job.FromTime = start;
     job.ToTime = end;
     job.Perform ();
     return job.Transactions;
 }