| 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 |
}
|