Subversion Repositories SmartDukaan

Rev

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

Rev 34586 Rev 34592
Line 9... Line 9...
9
import java.util.Map;
9
import java.util.Map;
10
 
10
 
11
@Service
11
@Service
12
public interface BidService {
12
public interface BidService {
13
 
13
 
14
    void sendMailToRBM(double netAmountInHand, double totalPayableAmount, int fofoId) throws Exception;
14
    ProfitMandiConstants.BID_ENUM sendMailToRBM(double netAmountInHand, double totalPayableAmount, int fofoId) throws Exception;
15
 
15
 
16
    void sendSummaryMailToUserAndManagers(int userId, List<Bid> bids, Liquidation liquidation) throws Exception;
16
    void sendSummaryMailToUserAndManagers(int userId, List<Bid> bids, Liquidation liquidation) throws Exception;
17
 
17
 
18
    void notifyPartner(int userId, Bid bid, ProfitMandiConstants.BID_ENUM status) throws Exception;
18
    void notifyPartner(int userId, Bid bid, ProfitMandiConstants.BID_ENUM status) throws Exception;
19
 
19
 
20
    void cancelYesterdayProcessBid(Bid bid) throws Exception;
20
    ProfitMandiConstants.BID_ENUM cancelYesterdayProcessBid(Bid bid) throws Exception;
21
 
21
 
22
    void biddingLiveNotification(String message, String mediaURL) throws Exception;
22
    void biddingLiveNotification(String message, String mediaURL) throws Exception;
23
 
23
 
24
    void sendPushNotification(String message, String title, List<Integer> fofoIds) throws Exception;
24
    void sendPushNotification(String message, String title, List<Integer> fofoIds) throws Exception;
25
    
25