Subversion Repositories SmartDukaan

Rev

Rev 34629 | 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;
34629 tejus.loha 4
import com.spice.profitmandi.common.model.BrandAndAddToCartEligibleModel;
33243 ranu 5
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
31507 tejbeer 6
import org.springframework.stereotype.Service;
7
 
33243 ranu 8
import java.util.List;
31507 tejbeer 9
 
10
@Service
11
public interface BrandsService {
12
 
33243 ranu 13
    List<BrandCatalog> getBrands(int fofoId, String email, int categoryId) throws ProfitMandiBusinessException;
31507 tejbeer 14
 
33243 ranu 15
    List<BrandCatalog> getBrandsToDisplay(int categoryId) throws ProfitMandiBusinessException;
31507 tejbeer 16
 
34513 ranu 17
    List<String> partnerIneligibleBrands(int fofoId) throws ProfitMandiBusinessException;
18
 
34629 tejus.loha 19
    BrandAndAddToCartEligibleModel wodcompletBrands(int fofoId) throws ProfitMandiBusinessException;
36482 vikas 20
 
21
    List<BrandCatalog> getAllActiveBrands() throws ProfitMandiBusinessException;
31507 tejbeer 22
}