Subversion Repositories SmartDukaan

Rev

Rev 35549 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
35501 ranu 1
package com.spice.profitmandi.service.offers;
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
35549 ranu 4
import com.spice.profitmandi.dao.model.BulletinOfferModal;
35501 ranu 5
import com.spice.profitmandi.dao.model.TodayOfferModel;
6
import org.springframework.stereotype.Service;
7
 
35583 ranu 8
import java.time.LocalDateTime;
35501 ranu 9
import java.util.List;
10
 
11
@Service
12
public interface TodayOfferService {
13
 
14
 
35583 ranu 15
    List<BulletinOfferModal> findAllTodayCatalogOfferBulletin(List<Integer> regionIds, LocalDateTime startDate, LocalDateTime endDate)
35549 ranu 16
            throws ProfitMandiBusinessException;
17
 
35583 ranu 18
    List<BulletinOfferModal> findAllTodaySchemeBulletin(List<Integer> regionIds, LocalDateTime startDate, LocalDateTime endDate)
35549 ranu 19
            throws ProfitMandiBusinessException;
20
 
35583 ranu 21
    List<BulletinOfferModal> findAllTodayWebOfferBulletin(LocalDateTime startDate, LocalDateTime endDate)
35549 ranu 22
            throws ProfitMandiBusinessException;
23
 
35583 ranu 24
    List<BulletinOfferModal> getAllTodayCreatedPreBookingList(LocalDateTime startDate, LocalDateTime endDate);
35549 ranu 25
 
35501 ranu 26
    List<TodayOfferModel> findAllTodayOffer(String brand, int reatialerId) throws ProfitMandiBusinessException;
27
 
28
    List<TodayOfferModel> groupSameOffers(List<TodayOfferModel> list);
29
}