Subversion Repositories SmartDukaan

Rev

Rev 26461 | Details | Compare with Previous | Last modification | View Log | RSS feed

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