Package com.suarte.core

Examples of com.suarte.core.ExchangeRate


    public String edit() {
        local = currencyManager.findLocal();
        if (id != null) {
            exchangeRate = exchangeRateManager.get(id);
        } else {
            exchangeRate = new ExchangeRate();
            exchangeRate.setFromCurrency(local);
        }

        return "edit";
    }
View Full Code Here


        return "edit";
    }

    public String add() {
        local = currencyManager.findLocal();
        exchangeRate = new ExchangeRate();
        exchangeRate.setFromCurrency(local);

        return "add";
    }
View Full Code Here

TOP

Related Classes of com.suarte.core.ExchangeRate

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.