use of org.mifos.accounts.fees.business.AmountFeeBO in project head by mifos.
the class TestObjectFactory method getFees.
public static List<FeeDto> getFees() {
List<FeeDto> fees = new ArrayList<FeeDto>();
AmountFeeBO maintenanceFee = (AmountFeeBO) createPeriodicAmountFee("Maintenance Fee", FeeCategory.ALLCUSTOMERS, "100", RecurrenceType.WEEKLY, Short.valueOf("1"));
FeeDto fee = new FeeDto(getContext(), maintenanceFee);
fees.add(fee);
return fees;
}
Aggregations