Subversion Repositories SmartDukaan

Rev

Rev 35104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35104 Rev 35150
Line 5... Line 5...
5
import java.time.LocalDate;
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(LocalDate date) 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
}
14
}