Rev 33119 | Rev 33243 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.catalog;import java.util.List;import org.springframework.stereotype.Service;import com.spice.profitmandi.dao.entity.catalog.BrandCatalog;@Servicepublic interface BrandsService {List<BrandCatalog> getBrands(int fofoId, String email, int categoryId);List<BrandCatalog> getBrandsToDisplay(int categoryId);}