Subversion Repositories SmartDukaan

Rev

Rev 35104 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;

import java.time.LocalDate;
import java.util.Map;

public interface SaleRewardService {

    void disburseRewardsByEligibility() throws ProfitMandiBusinessException;

    Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;

}