| 33916 |
amit.gupta |
1 |
package com.spice.profitmandi.service.catalog;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
4 |
import com.spice.profitmandi.dao.entity.catalog.ComboMappedModel;
|
|
|
5 |
import com.spice.profitmandi.dao.entity.user.Cart;
|
|
|
6 |
import com.spice.profitmandi.dao.model.UserCart;
|
|
|
7 |
import com.spice.profitmandi.service.inventory.Combo;
|
|
|
8 |
import org.springframework.stereotype.Component;
|
|
|
9 |
import org.springframework.stereotype.Service;
|
|
|
10 |
|
|
|
11 |
@Service
|
|
|
12 |
public interface ComboService {
|
|
|
13 |
boolean validateCombo(UserCart userCart) throws ProfitMandiBusinessException;
|
|
|
14 |
}
|