Exemplo n.º 1
0
        /// <summary>
        /// Renders comments list.
        /// </summary>
        /// <param name="helper">The helper.</param>
        /// <param name="item">The item.</param>
        public static MvcHtmlString CommentsList(this HtmlHelper helper, IDataItem item)
        {
            var title = CommentsHelpers.GetTitle(item);

            return(CommentsHelpers.GetCommentsList(helper, item, title));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Renders comments list.
 /// </summary>
 /// <param name="helper">The helper.</param>
 /// <param name="item">The item.</param>
 /// <param name="title">The title.</param>
 public static MvcHtmlString CommentsList(this HtmlHelper helper, IDataItem item, string title)
 {
     return(CommentsHelpers.GetCommentsList(helper, item, title));
 }