Package rewards.internal

Source Code of rewards.internal.RewardNetworkImpl

package rewards.internal;

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

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

    private AccountDao accountDao;


    public RewardNetworkImpl(AccountDao accountDao){
        this.accountDao = accountDao;
    }

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


    public AccountDao getAccountDao() {
        return accountDao;
    }


}
TOP

Related Classes of rewards.internal.RewardNetworkImpl

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.