コード例 #1
0
 public void SaveUpdatePopularTagsSetting(AspxCommonInfo aspxCommonObj, PopularTagsSettingKeyPair pTSettingList)
 {
     try
     {
         PopularTagsProvider ptp = new PopularTagsProvider();
         ptp.SaveUpdatePopularTagsSetting(aspxCommonObj, pTSettingList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
 public static List <ItemBasicDetailsInfo> GetUserTaggedItems(int offset, int limit, string tagIDs, int SortBy, int rowTotal, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <ItemBasicDetailsInfo> lstItemBasic = PopularTagsProvider.GetUserTaggedItems(offset, limit, tagIDs, SortBy, rowTotal, aspxCommonObj);
         return(lstItemBasic);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
コード例 #3
0
 public PopularTagsSettingKeyPair GetPopularTagsSettingValueByKey(AspxCommonInfo aspxCommonObj, string settingKey)
 {
     try
     {
         PopularTagsProvider ptp = new PopularTagsProvider();
         return(ptp.GetPopularTagsSettingValueByKey(aspxCommonObj, settingKey));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #4
0
 public List <PopularTagsSettingInfo> GetPopularTagsSetting(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         PopularTagsProvider ptp = new PopularTagsProvider();
         return(ptp.GetPopularTagsSetting(aspxCommonObj));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #5
0
 public List <PopularTagsRssFeedInfo> GetRssFeedContens(AspxCommonInfo aspxCommonObj, string pageURL, string rssOption, int count)
 {
     try
     {
         PopularTagsProvider           ptp           = new PopularTagsProvider();
         List <PopularTagsRssFeedInfo> popularTagRss = ptp.GetPopularTagsRssContent(aspxCommonObj, rssOption, count);
         return(popularTagRss);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #6
0
 public List <TagDetailsInfo> GetAllPopularTags(AspxCommonInfo aspxCommonObj, int count)
 {
     try
     {
         PopularTagsProvider   ptp          = new PopularTagsProvider();
         List <TagDetailsInfo> lstTagDetail = ptp.GetAllPopularTags(aspxCommonObj, count);
         return(lstTagDetail);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
コード例 #7
0
 private List <RssFeedNewTags> GetNewItemTagRssFeedContent(AspxCommonInfo aspxCommonObj, XmlTextWriter rssXml, string pageURL, string rssOption, int count)
 {
     try
     {
         PopularTagsProvider   ptp           = new PopularTagsProvider();
         List <RssFeedNewTags> popularTagRss = ptp.GetNewTagsRssContent(aspxCommonObj, rssOption, count);
         return(popularTagRss);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #8
0
        public static List <ItemBasicDetailsInfo> GetUserTaggedItems(int offset, int limit, string tagIDs, int SortBy, int rowTotal, AspxCommonInfo aspxCommonObj)
        {
            List <ItemBasicDetailsInfo> itemBasicDetailsInfos;

            try
            {
                List <ItemBasicDetailsInfo> userTaggedItems = PopularTagsProvider.GetUserTaggedItems(offset, limit, tagIDs, SortBy, rowTotal, aspxCommonObj);
                itemBasicDetailsInfos = userTaggedItems;
            }
            catch (Exception exception)
            {
                throw exception;
            }
            return(itemBasicDetailsInfos);
        }