40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Nop.Core;
|
|
using Nop.Plugin.Payments.CheckMoneyOrder.Models;
|
|
using Nop.Services.Localization;
|
|
using Nop.Web.Framework.Components;
|
|
|
|
namespace Nop.Plugin.Payments.CheckMoneyOrder.Components;
|
|
|
|
public class CheckMoneyOrderViewComponent : NopViewComponent
|
|
{
|
|
protected readonly CheckMoneyOrderPaymentSettings _checkMoneyOrderPaymentSettings;
|
|
protected readonly ILocalizationService _localizationService;
|
|
protected readonly IStoreContext _storeContext;
|
|
protected readonly IWorkContext _workContext;
|
|
|
|
public CheckMoneyOrderViewComponent(CheckMoneyOrderPaymentSettings checkMoneyOrderPaymentSettings,
|
|
ILocalizationService localizationService,
|
|
IStoreContext storeContext,
|
|
IWorkContext workContext)
|
|
{
|
|
_checkMoneyOrderPaymentSettings = checkMoneyOrderPaymentSettings;
|
|
_localizationService = localizationService;
|
|
_storeContext = storeContext;
|
|
_workContext = workContext;
|
|
}
|
|
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
public async Task<IViewComponentResult> InvokeAsync()
|
|
{
|
|
var store = await _storeContext.GetCurrentStoreAsync();
|
|
|
|
var model = new PaymentInfoModel
|
|
{
|
|
DescriptionText = await _localizationService.GetLocalizedSettingAsync(_checkMoneyOrderPaymentSettings,
|
|
x => x.DescriptionText, (await _workContext.GetWorkingLanguageAsync()).Id, store.Id)
|
|
};
|
|
|
|
return View("~/Plugins/Payments.CheckMoneyOrder/Views/PaymentInfo.cshtml", model);
|
|
}
|
|
} |