Subversion Repositories SmartDukaan

Rev

Rev 35150 | Go to most recent revision | Details | 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;
4
 
5
import java.time.LocalDate;
6
import java.util.Map;
7
 
8
public interface SaleRewardService {
9
 
10
    void disburseRewardsByEligibility(LocalDate date) throws ProfitMandiBusinessException;
11
 
12
    Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;
13
 
14
}