Subversion Repositories SmartDukaan

Rev

Rev 26456 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24336 amit.gupta 1
package com.spice.profitmandi.service;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.dao.entity.fofo.PartnerDailyInvestment;
7
 
8
@Service
9
public interface PartnerInvestmentService {
10
	boolean isInvestmentBelow(int fofoId, int percentage) throws ProfitMandiBusinessException;
11
	PartnerDailyInvestment getInvestment(int fofoId, int minusSalesDays) throws ProfitMandiBusinessException;
12
	boolean isInvestmentOk(int fofoId, int minPercentage, int maxPercentage) throws ProfitMandiBusinessException;
13
}