Rev 23819 | Rev 23983 | 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.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);}