| 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 |
|
| 34492 |
vikas.jang |
17 |
void notifyPartner(int userId, Bid bid, ProfitMandiConstants.BID_ENUM status) throws Exception;
|
| 34468 |
vikas.jang |
18 |
|
| 34492 |
vikas.jang |
19 |
void cancelYesterdayProcessBid(Bid bid) throws Exception;
|
| 34468 |
vikas.jang |
20 |
|
| 34545 |
vikas.jang |
21 |
void biddingLiveNotification(String message, String mediaURL) throws Exception;
|
|
|
22 |
|
|
|
23 |
void sendPushNotification(String message, String title, List<Integer> fofoIds) throws Exception;
|
|
|
24 |
|
| 34468 |
vikas.jang |
25 |
}
|