Subversion Repositories SmartDukaan

Rev

Rev 23110 | Rev 23951 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23110 Rev 23819
Line 1... Line 1...
1
package com.spice.profitmandi.service.pricing;
1
package com.spice.profitmandi.service.pricing;
2
 
2
 
-
 
3
import java.util.List;
-
 
4
import java.util.Map;
-
 
5
 
3
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
4
 
7
 
-
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
9
import com.spice.profitmandi.dao.entity.transaction.LineItemImei;
-
 
10
import com.spice.profitmandi.dao.entity.transaction.PriceDrop;
-
 
11
 
5
@Service
12
@Service
6
public interface PriceDropService {
13
public interface PriceDropService {
7
	public void addPriceDropAmountToWallet();
14
	public void addPriceDropAmountToWallet();
-
 
15
 
-
 
16
	public Map<String, Integer> getIMEIAndfofoIdForPriceDrop(List<LineItemImei> lineItemImeis, PriceDrop priceDrop);
-
 
17
 
-
 
18
	public Map<String, String> getIMEIandRetailerName(List<LineItemImei> lineItemImeis, PriceDrop pricedrop)
-
 
19
			throws ProfitMandiBusinessException;
-
 
20
 
8
}
21
}