Rev 35150 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 35104 |
vikas |
1 |
package com.spice.profitmandi.dao.service;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 35247 |
vikas |
4 |
import com.spice.profitmandi.dao.entity.StoreSalesTarget;
|
| 35104 |
vikas |
5 |
|
|
|
6 |
import java.util.Map;
|
|
|
7 |
|
|
|
8 |
public interface SaleRewardService {
|
|
|
9 |
|
| 35150 |
vikas |
10 |
void disburseRewardsByEligibility() throws ProfitMandiBusinessException;
|
| 35104 |
vikas |
11 |
|
|
|
12 |
Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;
|
|
|
13 |
|
| 35247 |
vikas |
14 |
StoreSalesTarget findTargetsByFofoId(int fofoId) throws ProfitMandiBusinessException;
|
|
|
15 |
|
| 35104 |
vikas |
16 |
}
|