Subversion Repositories SmartDukaan

Rev

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

Rev 22608 Rev 22653
Line 2... Line 2...
2
 
2
 
3
import java.util.Set;
3
import java.util.Set;
4
 
4
 
5
import org.springframework.stereotype.Service;
5
import org.springframework.stereotype.Service;
6
 
6
 
-
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
8
import com.spice.profitmandi.dao.entity.catalog.Scheme;
-
 
9
 
7
@Service
10
@Service
8
public interface SchemeService {
11
public interface SchemeService {
-
 
12
	public void saveScheme(Scheme scheme, Set<Integer> retailerIds) throws ProfitMandiBusinessException;
9
	public Set<Integer> getUserPositiveSchemeTagIds();
13
	public void activeSchemeById(int schemeId) throws ProfitMandiBusinessException;
10
	public Set<Integer> getUserNegativeSchemeTagIds();
14
	public void expireSchemeById(int schemeId) throws ProfitMandiBusinessException;
-
 
15
	public void processSchemeIn(int inventoryItemId) throws ProfitMandiBusinessException;
-
 
16
	public void processSchemeOut(int inventoryItemId) throws ProfitMandiBusinessException;
11
}
17
}