Subversion Repositories SmartDukaan

Rev

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

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