Rev 33916 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 33916 |
amit.gupta |
1 |
package com.spice.profitmandi.service.catalog;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 36960 |
amit |
4 |
import com.spice.profitmandi.common.model.ComboCancellationResult;
|
|
|
5 |
import com.spice.profitmandi.dao.entity.transaction.Order;
|
| 33916 |
amit.gupta |
6 |
import com.spice.profitmandi.dao.model.UserCart;
|
|
|
7 |
import org.springframework.stereotype.Service;
|
|
|
8 |
|
| 36960 |
amit |
9 |
import java.util.List;
|
|
|
10 |
|
| 33916 |
amit.gupta |
11 |
@Service
|
|
|
12 |
public interface ComboService {
|
|
|
13 |
boolean validateCombo(UserCart userCart) throws ProfitMandiBusinessException;
|
| 36960 |
amit |
14 |
|
|
|
15 |
ComboCancellationResult checkOrderCancellationForCombo(List<Order> orders);
|
| 33916 |
amit.gupta |
16 |
}
|