use of org.mifos.customers.business.CustomerAccountBO in project head by mifos.
the class ApplyCustomerFeeChangesHelper method updateAccountFee.
private void updateAccountFee(AccountBO account, FeeBO feesBO) throws BatchJobException {
CustomerAccountBO customerAccount = (CustomerAccountBO) account;
AccountFeesEntity accountFee = account.getAccountFees(feesBO.getFeeId());
customerAccount.updateFee(accountFee, feesBO);
}
Aggregations