Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Services.Forums;
using Nop.Web.Factories;
using Nop.Web.Framework.Components;
namespace Nop.Web.Components;
public partial class ForumLastPostViewComponent : NopViewComponent
{
protected readonly IForumModelFactory _forumModelFactory;
protected readonly IForumService _forumService;
public ForumLastPostViewComponent(IForumModelFactory forumModelFactory, IForumService forumService)
{
_forumModelFactory = forumModelFactory;
_forumService = forumService;
}
public async Task InvokeAsync(int forumPostId, bool showTopic)
{
var forumPost = await _forumService.GetPostByIdAsync(forumPostId);
var model = await _forumModelFactory.PrepareLastPostModelAsync(forumPost, showTopic);
return View(model);
}
}