Subversion Repositories SmartDukaan

Rev

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

Rev 33614 Rev 34221
Line 16... Line 16...
16
import java.util.Map;
16
import java.util.Map;
17
import java.util.Set;
17
import java.util.Set;
18
 
18
 
19
@Service
19
@Service
20
public interface SchemeService {
20
public interface SchemeService {
-
 
21
    List<String> getBlockedImeis();
-
 
22
 
21
	public void saveScheme(int creatorId, CreateSchemeRequest createSchemeRequest) throws ProfitMandiBusinessException;
23
    public void saveScheme(int creatorId, CreateSchemeRequest createSchemeRequest) throws ProfitMandiBusinessException;
22
 
24
 
23
	public Scheme getSchemeById(int schemeId) throws ProfitMandiBusinessException;
25
	public Scheme getSchemeById(int schemeId) throws ProfitMandiBusinessException;
24
 
26
 
25
    public List<SchemeModel> getAllSchemeModels(LocalDateTime startDateTime, LocalDateTime endDateTime) throws ProfitMandiBusinessException;
27
    public List<SchemeModel> getAllSchemeModels(LocalDateTime startDateTime, LocalDateTime endDateTime) throws ProfitMandiBusinessException;
26
 
28