Rev 35501 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.offers;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.model.BulletinOfferModal;import com.spice.profitmandi.dao.model.TodayOfferModel;import org.springframework.stereotype.Service;import java.util.List;@Servicepublic interface TodayOfferService {List<BulletinOfferModal> findAllTodayCatalogOfferBulletin(List<Integer> regionIds)throws ProfitMandiBusinessException;List<BulletinOfferModal> findAllTodaySchemeBulletin(List<Integer> regionIds)throws ProfitMandiBusinessException;// @OverrideList<BulletinOfferModal> findAllTodayWebOfferBulletin()throws ProfitMandiBusinessException;List<BulletinOfferModal> getAllTodayCreatedPreBookingList();List<TodayOfferModel> findAllTodayOffer(String brand, int reatialerId) throws ProfitMandiBusinessException;List<TodayOfferModel> groupSameOffers(List<TodayOfferModel> list);}