}
protected AccountingTransaction makeAccountingTransactionForInstallment(User responsibleUser, Event event, Account from,
Account to, EntryType entryType, Money amount, Installment installment,
AccountingTransactionDetailDTO transactionDetail) {
return new InstallmentAccountingTransaction(responsibleUser, event, makeEntry(entryType, amount.negate(), from),
makeEntry(entryType, amount, to), installment, makeAccountingTransactionDetail(transactionDetail));
}