Subversion Repositories SmartDukaan

Rev

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

Rev 26460 Rev 26461
Line 1... Line 1...
1
package com.spice.profitmandi.service;
1
package com.spice.profitmandi.service;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
import java.util.Map;
4
import java.util.Map;
5
 
5
 
-
 
6
import org.springframework.stereotype.Service;
-
 
7
 
6
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
7
import com.spice.profitmandi.dao.model.PartnerDetailModel;
9
import com.spice.profitmandi.dao.model.PartnerDetailModel;
8
 
10
 
-
 
11
@Service
9
public interface PartnerStatsService {
12
public interface PartnerStatsService {
10
	
13
	
11
	Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
14
	Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
12
	PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
15
	PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
13
}
16
}