Subversion Repositories SmartDukaan

Rev

Rev 22608 | Rev 22859 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.scheme;

import java.util.Set;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.dao.entity.catalog.Scheme;

@Service
public interface SchemeService {
        public void saveScheme(Scheme scheme, Set<Integer> retailerIds) throws ProfitMandiBusinessException;
        public void activeSchemeById(int schemeId) throws ProfitMandiBusinessException;
        public void expireSchemeById(int schemeId) throws ProfitMandiBusinessException;
        public void processSchemeIn(int inventoryItemId) throws ProfitMandiBusinessException;
        public void processSchemeOut(int inventoryItemId) throws ProfitMandiBusinessException;
}