Subversion Repositories SmartDukaan

Rev

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

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