Subversion Repositories SmartDukaan

Rev

Rev 34906 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34906 Rev 34917
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 com.spice.profitmandi.dao.entity.affiliate.AffiliateEarnings;
4
import org.springframework.stereotype.Service;
4
import org.springframework.stereotype.Service;
5
 
5
 
-
 
6
import java.util.List;
6
import java.util.Map;
7
import java.util.Map;
7
 
8
 
8
 
9
 
9
@Service
10
@Service
10
public interface AffiliateService {
11
public interface AffiliateService {
11
 
12
 
12
    void createEarnings() throws Exception;
-
 
13
 
-
 
14
    AffiliateEarnings getEarnings() throws Exception;
13
    List<AffiliateEarnings> getEarnings(int customerId) throws Exception;
15
 
14
 
16
    Map<String,Object> getAffiliateData(int customerId) throws Exception;
15
    Map<String,Object> getAffiliateData(int customerId) throws Exception;
17
 
16
 
-
 
17
    void createEarnings(AffiliateEarnings earnings);
-
 
18
 
18
}
19
}