| 34468 |
vikas.jang |
1 |
package com.spice.profitmandi.dao.service;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.model.ProfitMandiConstants;
|
|
|
4 |
import com.spice.profitmandi.dao.entity.catalog.Bid;
|
|
|
5 |
import com.spice.profitmandi.dao.entity.catalog.Liquidation;
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
import java.util.List;
|
|
|
9 |
|
|
|
10 |
@Service
|
|
|
11 |
public interface BidService {
|
|
|
12 |
|
|
|
13 |
void sendMailToRBM(double netAmountInHand, double totalPayableAmount, int fofoId) throws Exception;
|
|
|
14 |
|
|
|
15 |
void sendSummaryMailToUserAndManagers(int userId, List<Bid> bids, Liquidation liquidation) throws Exception;
|
|
|
16 |
|
|
|
17 |
void notifyPartner(int userId, List<Bid> bids, Liquidation liquidation, ProfitMandiConstants.BID_ENUM status) throws Exception;
|
|
|
18 |
|
|
|
19 |
void cancelYesterdayProcessBid(int bidId) throws Exception;
|
|
|
20 |
|
|
|
21 |
}
|