Subversion Repositories SmartDukaan

Rev

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

Rev 35670 Rev 35672
Line 1... Line 1...
1
package com.spice.profitmandi.service;
1
package com.spice.profitmandi.service;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.dao.model.*;
4
import com.spice.profitmandi.dao.model.*;
4
import org.springframework.stereotype.Service;
5
import org.springframework.stereotype.Service;
5
 
6
 
6
import java.time.LocalDate;
7
import java.time.LocalDate;
7
import java.util.List;
8
import java.util.List;
Line 45... Line 46...
45
 
46
 
46
    List<RbmCallTargetModel> getRbmCallTargetModels() throws Exception;
47
    List<RbmCallTargetModel> getRbmCallTargetModels() throws Exception;
47
 
48
 
48
    List<OutOfSequenceDetailModel> getOutOfSequenceDetails(int authId);
49
    List<OutOfSequenceDetailModel> getOutOfSequenceDetails(int authId);
49
 
50
 
50
    List<CalledPartnerDetailModel> getCalledPartnerDetails(int authId);
51
    List<CalledPartnerDetailModel> getCalledPartnerDetails(int authId) throws ProfitMandiBusinessException;
51
 
52
 
52
    List<List<String>> getRbmCallTargetRawDataByAuthId(int authId) throws Exception;
53
    List<List<String>> getRbmCallTargetRawDataByAuthId(int authId) throws Exception;
53
}
54
}