public static List <BrandInfo> GetAllBrandForItem(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <BrandInfo> lstBrand = AspxBrandProvider.GetAllBrandForItem(aspxCommonObj);
         return(lstBrand);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public static List <BrandInfo> GetAllBrandList(int offset, int limit, AspxCommonInfo aspxCommonObj, string brandName)
 {
     try
     {
         List <BrandInfo> lstBrand = AspxBrandProvider.GetAllBrandList(offset, limit, aspxCommonObj, brandName);
         return(lstBrand);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public static List <BrandInfo> GetBrandDetailByBrandID(string brandName, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <BrandInfo> lstBrand = AspxBrandProvider.GetBrandDetailByBrandID(brandName, aspxCommonObj);
         return(lstBrand);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public static bool CheckBrandUniqueness(string brandName, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         bool isUnique = AspxBrandProvider.CheckBrandUniqueness(brandName, aspxCommonObj);
         return(isUnique);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public static List <ItemBasicDetailsInfo> GetBrandItemsByBrandID(int offset, int limit, string brandName, int SortBy, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <ItemBasicDetailsInfo> lstItem = AspxBrandProvider.GetBrandItemsByBrandID(offset, limit, brandName, SortBy, aspxCommonObj);
         return(lstItem);
     }
     catch (Exception e)
     {
         throw e;
     }
 }