Package rewards.internal

Source Code of rewards.internal.JoeDayzImpl

package rewards.internal;

import rewards.RewardConfirmation;
import rewards.RewardNetwork;
import rewards.internal.account.AccountDao;

/**
* Created by josediaz on 4/14/14.
*/
public class JoeDayzImpl implements RewardNetwork {

    private AccountDao accountDao;

    public JoeDayzImpl(AccountDao accountDao){
        this.accountDao = accountDao;

    }

    @Override
    public RewardConfirmation rewardAccountFor(AccountDao accountDao) {
        return new RewardConfirmation();
    }

    @Override
    public AccountDao getAccountDao() {
        return accountDao;
    }
}
TOP

Related Classes of rewards.internal.JoeDayzImpl

TOP
Copyright © 2018 www.massapi.com. 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.