Rev 35549 |
Go to most recent revision |
Details |
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;
|
|
|
4 |
import com.spice.profitmandi.dao.model.TodayOfferModel;
|
|
|
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
import java.util.List;
|
|
|
8 |
|
|
|
9 |
@Service
|
|
|
10 |
public interface TodayOfferService {
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
List<TodayOfferModel> findAllTodayOffer(String brand, int reatialerId) throws ProfitMandiBusinessException;
|
|
|
14 |
|
|
|
15 |
List<TodayOfferModel> groupSameOffers(List<TodayOfferModel> list);
|
|
|
16 |
}
|