Subversion Repositories SmartDukaan

Rev

Rev 23951 | Rev 24431 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23110 ashik.ali 1
package com.spice.profitmandi.service.pricing;
2
 
23819 govind 3
import java.util.List;
4
 
23110 ashik.ali 5
import org.springframework.stereotype.Service;
6
 
23983 amit.gupta 7
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
23819 govind 8
import com.spice.profitmandi.dao.entity.transaction.LineItemImei;
9
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
10
 
23110 ashik.ali 11
@Service
12
public interface PriceDropService {
23983 amit.gupta 13
	void addPriceDropAmountToWallet();
14
	List<InventoryItem> getInventoryForPriceDrop (List<LineItemImei> lineItemImeis, PriceDrop priceDrop) throws Exception;
23819 govind 15
 
23110 ashik.ali 16
}