Subversion Repositories SmartDukaan

Rev

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

Rev 34513 Rev 34629
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 com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
4
import com.spice.profitmandi.common.model.BrandAndAddToCartEligibleModel;
4
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
5
import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;
5
import org.springframework.stereotype.Service;
6
import org.springframework.stereotype.Service;
6
 
7
 
7
import java.util.List;
8
import java.util.List;
8
 
9
 
Line 13... Line 14...
13
 
14
 
14
    List<BrandCatalog> getBrandsToDisplay(int categoryId) throws ProfitMandiBusinessException;
15
    List<BrandCatalog> getBrandsToDisplay(int categoryId) throws ProfitMandiBusinessException;
15
 
16
 
16
    List<String> partnerIneligibleBrands(int fofoId) throws ProfitMandiBusinessException;
17
    List<String> partnerIneligibleBrands(int fofoId) throws ProfitMandiBusinessException;
17
 
18
 
-
 
19
    BrandAndAddToCartEligibleModel wodcompletBrands(int fofoId) throws ProfitMandiBusinessException;
18
}
20
}