Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Web.Areas.Admin.Factories;
using Nop.Web.Framework.Components;
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Components;
public partial class MultistorePreviewViewComponent : NopViewComponent
{
#region Fields
protected readonly ICommonModelFactory _commonModelFactory;
#endregion
#region Ctor
public MultistorePreviewViewComponent(ICommonModelFactory commonModelFactory)
{
_commonModelFactory = commonModelFactory;
}
#endregion
#region Methods
///
/// Invoke view component
///
/// Entity model
///
/// A task that represents the asynchronous operation
/// The task result contains the view component result
///
public async Task InvokeAsync(object model)
{
if (model is not BaseNopEntityModel entityModel)
return Content(string.Empty);
var multistorePreviewModels = await _commonModelFactory.PrepareMultistorePreviewModelsAsync(entityModel);
return View(multistorePreviewModels);
}
#endregion
}