Example #1
0
 public List <ProductCategory> GetProductCategoriesByStoreId(int storeId, string type, string search)
 {
     return(BaseCategoryRepository.GetBaseCategoriesSearchList(this, storeId, search, type));
 }
Example #2
0
 public List <ProductCategory> GetProductCategoriesByStoreId(int storeId, string type, bool?isActive)
 {
     return(BaseCategoryRepository.GetCategoriesByStoreId(this, storeId, type, isActive));
 }
 public async Task <List <Category> > GetCategoriesByStoreIdAsync(int storeId, string type, bool?isActive)
 {
     return(await BaseCategoryRepository.GetCategoriesByStoreIdAsync(this, storeId, type, isActive, null));
 }