Package org.mifosplatform.portfolio.loanaccount.command

Examples of org.mifosplatform.portfolio.loanaccount.command.LoanChargeCommand


    private static boolean isGreaterThanZero(final BigDecimal value) {
        return value.compareTo(BigDecimal.ZERO) == 1;
    }

    public LoanChargeCommand toCommand() {
        return new LoanChargeCommand(getId(), this.charge.getId(), this.amount, this.chargeTime, this.chargeCalculation, getDueLocalDate());
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.portfolio.loanaccount.command.LoanChargeCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.