Subversion Repositories SmartDukaan

Rev

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

Rev 34545 Rev 34586
Line 4... Line 4...
4
import com.spice.profitmandi.dao.entity.catalog.Bid;
4
import com.spice.profitmandi.dao.entity.catalog.Bid;
5
import com.spice.profitmandi.dao.entity.catalog.Liquidation;
5
import com.spice.profitmandi.dao.entity.catalog.Liquidation;
6
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
7
 
7
 
8
import java.util.List;
8
import java.util.List;
-
 
9
import java.util.Map;
9
 
10
 
10
@Service
11
@Service
11
public interface BidService {
12
public interface BidService {
12
 
13
 
13
    void sendMailToRBM(double netAmountInHand, double totalPayableAmount, int fofoId) throws Exception;
14
    void sendMailToRBM(double netAmountInHand, double totalPayableAmount, int fofoId) throws Exception;
Line 19... Line 20...
19
    void cancelYesterdayProcessBid(Bid bid) throws Exception;
20
    void cancelYesterdayProcessBid(Bid bid) throws Exception;
20
 
21
 
21
    void biddingLiveNotification(String message, String mediaURL) throws Exception;
22
    void biddingLiveNotification(String message, String mediaURL) throws Exception;
22
 
23
 
23
    void sendPushNotification(String message, String title, List<Integer> fofoIds) throws Exception;
24
    void sendPushNotification(String message, String title, List<Integer> fofoIds) throws Exception;
-
 
25
    
-
 
26
    void sendLiquidationReport(List<Map<String, Object>> liquidations) throws Exception;
24
 
27
 
25
}
28
}