示例#1
0
 private void GetBrandRssFeedContent(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         AspxBrandViewController objBrand        = new AspxBrandViewController();
         List <BrandRssInfo>     brandRssContent = objBrand.GetBrandRssFeedContent(aspxCommonObj, rssOption, BrandRssCount);
         BindBrandRss(brandRssContent, aspxCommonObj);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
 private void GetBrandRssFeedContent()
 {
     try
     {
         AspxCommonInfo aspxCommonObj = new AspxCommonInfo();
         aspxCommonObj.StoreID     = GetStoreID;
         aspxCommonObj.PortalID    = GetPortalID;
         aspxCommonObj.UserName    = GetUsername;
         aspxCommonObj.CultureName = GetCurrentCulture();
         AspxBrandViewController objBrand        = new AspxBrandViewController();
         List <BrandRssInfo>     brandRssContent = objBrand.GetBrandRssFeedContent(aspxCommonObj, rssOption, BrandRssCount);
         BindBrandRss(brandRssContent);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }