Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Services.Customers;
using Nop.Web.Factories;
using Nop.Web.Framework.Components;
namespace Nop.Web.Components;
public partial class ProfilePostsViewComponent : NopViewComponent
{
protected readonly ICustomerService _customerService;
protected readonly IProfileModelFactory _profileModelFactory;
public ProfilePostsViewComponent(ICustomerService customerService, IProfileModelFactory profileModelFactory)
{
_customerService = customerService;
_profileModelFactory = profileModelFactory;
}
public async Task InvokeAsync(int customerProfileId, int pageNumber)
{
var customer = await _customerService.GetCustomerByIdAsync(customerProfileId);
ArgumentNullException.ThrowIfNull(customer);
var model = await _profileModelFactory.PrepareProfilePostsModelAsync(customer, pageNumber);
return View(model);
}
}