Subversion Repositories SmartDukaan

Rev

Rev 26460 | Go to most recent revision | 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;

@Service
public interface PartnerStatsService {
        
        Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
        PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
}