Rev 31507 | Rev 33127 | 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 categoryId);public List<BrandCatalog> getBrandsToDisplay(int categoryId);}