Package lv.odylab.evemanage.integration.eveapi.dto

Examples of lv.odylab.evemanage.integration.eveapi.dto.AccountBalanceDto


        return accountCharacterDto;
    }

    @Override
    public AccountBalanceDto map(ApiAccountBalanceRow apiAccountBalanceRow, Class<AccountBalanceDto> accountBalanceDtoClass) {
        AccountBalanceDto accountBalanceDto = new AccountBalanceDto();
        apiAccountBalanceRow.setAccountID(apiAccountBalanceRow.getAccountID());
        apiAccountBalanceRow.setAccountKey(apiAccountBalanceRow.getAccountKey());
        apiAccountBalanceRow.setBalance(apiAccountBalanceRow.getBalance());
        return accountBalanceDto;
    }
View Full Code Here

TOP

Related Classes of lv.odylab.evemanage.integration.eveapi.dto.AccountBalanceDto

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.