Subversion Repositories SmartDukaan

Rev

Rev 33127 | Rev 34513 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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