.with(changes).with(changes).build();
}
private Map<String, Object> updateBulkReapayments(final JsonCommand command) {
final Map<String, Object> changes = new HashMap<>();
final CollectionSheetBulkRepaymentCommand bulkRepaymentCommand = this.bulkRepaymentCommandFromApiJsonDeserializer
.commandFromApiJson(command.json());
changes.putAll(this.loanWritePlatformService.makeLoanBulkRepayment(bulkRepaymentCommand));
return changes;
}