Rev 35150 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.StoreSalesTarget;import java.util.Map;public interface SaleRewardService {void disburseRewardsByEligibility() throws ProfitMandiBusinessException;Map<String, Object> findByFofoAndRegionId(int fofoId, int regionId) throws ProfitMandiBusinessException;StoreSalesTarget findTargetsByFofoId(int fofoId) throws ProfitMandiBusinessException;}