Ejemplo n.º 1
0
 /// <summary>
 /// Get a specified amount of the most popular tags, ordered by use amount
 /// </summary>
 /// <param name="amount"></param>
 /// <param name="allowedCategories"></param>
 /// <returns></returns>
 public Dictionary <TopicTag, int> GetPopularTags(int?amount, List <Category> allowedCategories)
 {
     return(_tagRepository.GetPopularTags(amount, allowedCategories));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get a specified amount of the most popular tags, ordered by use amount
 /// </summary>
 /// <param name="amount"></param>
 /// <returns></returns>
 public Dictionary<string, int> GetPopularTags(int? amount)
 {
         return _tagRepository.GetPopularTags(amount);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Get a specified amount of the most popular tags, ordered by use amount
 /// </summary>
 /// <param name="amount"></param>
 /// <returns></returns>
 public Dictionary <TopicTag, int> GetPopularTags(int?amount)
 {
     return(_tagRepository.GetPopularTags(amount));
 }