Rev 23110 | Rev 23951 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.pricing;import java.util.List;import java.util.Map;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.transaction.LineItemImei;import com.spice.profitmandi.dao.entity.transaction.PriceDrop;@Servicepublic interface PriceDropService {public void addPriceDropAmountToWallet();public Map<String, Integer> getIMEIAndfofoIdForPriceDrop(List<LineItemImei> lineItemImeis, PriceDrop priceDrop);public Map<String, String> getIMEIandRetailerName(List<LineItemImei> lineItemImeis, PriceDrop pricedrop)throws ProfitMandiBusinessException;}