Subversion Repositories SmartDukaan

Rev

Rev 35501 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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