Rev 34906 | 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.List;import java.util.Map;@Servicepublic interface AffiliateService {List<AffiliateEarnings> getEarnings(int customerId) throws Exception;Map<String,Object> getAffiliateData(int customerId) throws Exception;void createEarnings(AffiliateEarnings earnings);}