Rev 33119 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 31507 |
tejbeer |
1 |
package com.spice.profitmandi.service.catalog;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.springframework.stereotype.Service;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
|
|
|
8 |
|
|
|
9 |
@Service
|
|
|
10 |
public interface BrandsService {
|
|
|
11 |
|
|
|
12 |
public List<BrandCatalog> getBrands(int fofoId, String email, int categoryId);
|
|
|
13 |
|
|
|
14 |
public List<BrandCatalog> getBrandsToDisplay(int categoryId);
|
|
|
15 |
|
|
|
16 |
}
|