public int processDebitor(
     int partnerNr,
     int startValue,
     int maxResults,
     boolean all,
     LoggingHandler lh,
     CSVController cSVController)
     throws IOException {
   configurationController.setCSVController(cSVController);
   configurationController.setLoggingHandler(lh);
   return bookingAR.processDebitor(
       configurationController, partnerNr, startValue, maxResults, all, lh);
 }
 public int processARPacket(
     int startInvoice,
     int endInvoice,
     int maxResults,
     LoggingHandler loggingHandler,
     CSVController cSVController,
     boolean keyCaching)
     throws IOException, NotFoundException {
   configurationController.setCSVController(cSVController);
   configurationController.setLoggingHandler(loggingHandler);
   return bookingAR.processARPacket(
       configurationController, startInvoice, endInvoice, maxResults, keyCaching);
 }
 public String testBuchungslogikAR(int invoiceNumber) {
   return bookingAR.testBuchungslogikAR(invoiceNumber);
 }
 public void processSingleDebitor(Partner partner, LoggingHandler lh, CSVController cSVController)
     throws IOException {
   configurationController.setCSVController(cSVController);
   configurationController.setLoggingHandler(lh);
   bookingAR.writeDBSatz(configurationController, partner);
 }