Rev 26461 |
Go to most recent revision |
Details |
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 |
|
|
|
6 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
7 |
import com.spice.profitmandi.dao.model.PartnerDetailModel;
|
|
|
8 |
|
|
|
9 |
public interface PartnerStatsService {
|
|
|
10 |
|
|
|
11 |
Map<Integer, PartnerDetailModel>getAllPartnerStats() throws ProfitMandiBusinessException;
|
|
|
12 |
PartnerDetailModel getAggregateStats(List<PartnerDetailModel> partnerStats) throws ProfitMandiBusinessException;
|
|
|
13 |
}
|