コード例 #1
0
 /// <summary>
 /// Gets all tags.
 /// </summary>
 /// <returns></returns>
 public List<BBlogTag> GetAllTags()
 {
     using (var datas = new BlogTagDataManager())
     {
         return datas.GetAllTags()
             .Select(x => Change(x))
             .ToList();
     }
 }