Rev 24431 | Rev 24564 | 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.time.LocalDateTime;import java.util.List;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.model.ImeiDropSummaryModel;import com.spice.profitmandi.dao.entity.fofo.InventoryItem;import com.spice.profitmandi.dao.entity.transaction.LineItemImei;import com.spice.profitmandi.dao.entity.transaction.PriceDrop;@Servicepublic interface PriceDropService {void addPriceDropAmountToWallet();List<InventoryItem> getInventoryForPriceDrop (List<LineItemImei> lineItemImeis, PriceDrop priceDrop) throws Exception;void priceDropStatus(int priceDropId) throws Exception;List<ImeiDropSummaryModel> getAllSerialNumbersByAffectedDate(LocalDateTime affectedOn, Integer catalogItemId)throws Exception;}