Rev 34902 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.service;import com.spice.profitmandi.dao.entity.affiliate.AffiliateEarnings;import org.springframework.stereotype.Service;import java.util.Map;@Servicepublic interface AffiliateService {void createEarnings() throws Exception;AffiliateEarnings getEarnings() throws Exception;Map<String,Object> getAffiliateData(int customerId) throws Exception;}