Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.catalog;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.catalog.ComboMappedModel;import com.spice.profitmandi.dao.entity.user.Cart;import com.spice.profitmandi.dao.model.UserCart;import com.spice.profitmandi.service.inventory.Combo;import org.springframework.stereotype.Component;import org.springframework.stereotype.Service;@Servicepublic interface ComboService {boolean validateCombo(UserCart userCart) throws ProfitMandiBusinessException;}