Subversion Repositories SmartDukaan

Rev

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

Rev 26461 Rev 35537
Line 8... Line 8...
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
9
import com.spice.profitmandi.dao.model.PartnerDetailModel;
9
import com.spice.profitmandi.dao.model.PartnerDetailModel;
10
 
10
 
11
@Service
11
@Service
12
public interface PartnerStatsService {
12
public interface PartnerStatsService {
13
	
13
 
14
	Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
14
	Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
15
	PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
15
	PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
16
}
16
}