Subversion Repositories SmartDukaan

Rev

Rev 35150 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35150 Rev 35247
Line 1... Line 1...
1
package com.spice.profitmandi.dao.service;
1
package com.spice.profitmandi.dao.service;
2
 
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
4
import com.spice.profitmandi.dao.entity.StoreSalesTarget;
4
 
5
 
5
import java.time.LocalDate;
-
 
6
import java.util.Map;
6
import java.util.Map;
7
 
7
 
8
public interface SaleRewardService {
8
public interface SaleRewardService {
9
 
9
 
10
    void disburseRewardsByEligibility() throws ProfitMandiBusinessException;
10
    void disburseRewardsByEligibility() throws ProfitMandiBusinessException;
11
 
11
 
12
    Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;
12
    Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;
13
 
13
 
-
 
14
    StoreSalesTarget findTargetsByFofoId(int fofoId) throws ProfitMandiBusinessException;
-
 
15
 
14
}
16
}