Subversion Repositories SmartDukaan

Rev

Rev 34902 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
34902 vikas 1
package com.spice.profitmandi.dao.service;
2
 
34906 vikas 3
import com.spice.profitmandi.dao.entity.affiliate.AffiliateEarnings;
34902 vikas 4
import org.springframework.stereotype.Service;
5
 
34906 vikas 6
import java.util.Map;
34902 vikas 7
 
34906 vikas 8
 
34902 vikas 9
@Service
10
public interface AffiliateService {
34906 vikas 11
 
12
    void createEarnings() throws Exception;
13
 
14
    AffiliateEarnings getEarnings() throws Exception;
15
 
16
    Map<String,Object> getAffiliateData(int customerId) throws Exception;
17
 
34902 vikas 18
}