Rev 33916 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.catalog;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.ComboCancellationResult;import com.spice.profitmandi.dao.entity.transaction.Order;import com.spice.profitmandi.dao.model.UserCart;import org.springframework.stereotype.Service;import java.util.List;@Servicepublic interface ComboService {boolean validateCombo(UserCart userCart) throws ProfitMandiBusinessException;ComboCancellationResult checkOrderCancellationForCombo(List<Order> orders);}