Subversion Repositories SmartDukaan

Rev

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

Rev 23019 Rev 23365
Line 15... Line 15...
15
	public void saveScheme(int creatorId, CreateSchemeRequest createSchemeRequest) throws ProfitMandiBusinessException;
15
	public void saveScheme(int creatorId, CreateSchemeRequest createSchemeRequest) throws ProfitMandiBusinessException;
16
	public Scheme getSchemeById(int schemeId) throws ProfitMandiBusinessException;
16
	public Scheme getSchemeById(int schemeId) throws ProfitMandiBusinessException;
17
	public List<SchemeModel> getAllSchemeModels(LocalDateTime startDateTime, LocalDateTime endDateTime);
17
	public List<SchemeModel> getAllSchemeModels(LocalDateTime startDateTime, LocalDateTime endDateTime);
18
	public void activeSchemeById(int schemeId) throws ProfitMandiBusinessException;
18
	public void activeSchemeById(int schemeId) throws ProfitMandiBusinessException;
19
	public void expireSchemeById(int schemeId) throws ProfitMandiBusinessException;
19
	public void expireSchemeById(int schemeId) throws ProfitMandiBusinessException;
20
	public float processSchemeIn(int purchaseId, int retailerId) throws ProfitMandiBusinessException;
20
	public void processSchemeIn(int purchaseId, int retailerId) throws ProfitMandiBusinessException;
21
	public float processSchemeOut(int fofoOrderId, int retailerId) throws ProfitMandiBusinessException;
21
	public void processSchemeOut(int fofoOrderId, int retailerId) throws ProfitMandiBusinessException;
22
}
22
}