Subversion Repositories SmartDukaan

Rev

Rev 24336 | Rev 35536 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service;

import java.util.List;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.dao.entity.fofo.PartnerDailyInvestment;

@Service
public interface PartnerInvestmentService {
        boolean isInvestmentBelow(int fofoId, int percentage) throws ProfitMandiBusinessException;
        PartnerDailyInvestment getInvestment(int fofoId, int minusSalesDays) throws ProfitMandiBusinessException;
        boolean isInvestmentOk(int fofoId, int minPercentage, int maxPercentage) throws ProfitMandiBusinessException;
        List<PartnerDailyInvestment> getInvestment(List<Integer> fofoIds, int minusSalesDays)
                        throws ProfitMandiBusinessException;
}