Subversion Repositories SmartDukaan

Rev

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

Rev 33127 Rev 33243
Line 1... Line 1...
1
package com.spice.profitmandi.service.catalog;
1
package com.spice.profitmandi.service.catalog;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import java.util.List;
4
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
4
 
-
 
5
import org.springframework.stereotype.Service;
5
import org.springframework.stereotype.Service;
6
 
6
 
7
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
7
import java.util.List;
8
 
8
 
9
@Service
9
@Service
10
public interface BrandsService {
10
public interface BrandsService {
11
 
11
 
12
	List<BrandCatalog> getBrands(int fofoId, String email, int categoryId);
12
    List<BrandCatalog> getBrands(int fofoId, String email, int categoryId) throws ProfitMandiBusinessException;
13
 
13
 
14
	List<BrandCatalog> getBrandsToDisplay(int categoryId);
14
    List<BrandCatalog> getBrandsToDisplay(int categoryId) throws ProfitMandiBusinessException;
15
 
15
 
16
}
16
}