Rev 26461 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import java.util.List;import java.util.Map;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.model.PartnerDetailModel;@Servicepublic interface PartnerStatsService {Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;}