Subversion Repositories SmartDukaan

Rev

Rev 34902 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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