Subversion Repositories SmartDukaan

Rev

Rev 23983 | Rev 24433 | 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 org.springframework.stereotype.Service;

import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
import com.spice.profitmandi.dao.entity.transaction.LineItemImei;
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;

@Service
public interface PriceDropService {
        void addPriceDropAmountToWallet();
        List<InventoryItem> getInventoryForPriceDrop (List<LineItemImei> lineItemImeis, PriceDrop priceDrop) throws Exception;
        void priceDropStatus(int priceDropId) throws Exception;

}