Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Plugin.Payments.PayPalCommerce.Services;
namespace Nop.Plugin.Payments.PayPalCommerce.Controllers;
public class PayPalCommerceWebhookController : Controller
{
#region Fields
private readonly PayPalCommerceServiceManager _serviceManager;
private readonly PayPalCommerceSettings _settings;
#endregion
#region Ctor
public PayPalCommerceWebhookController(PayPalCommerceServiceManager serviceManager,
PayPalCommerceSettings settings)
{
_serviceManager = serviceManager;
_settings = settings;
}
#endregion
#region Methods
[HttpPost]
public async Task<IActionResult> WebhookHandler()
{
await _serviceManager.HandleWebhookAsync(_settings, Request);
return Ok();
}
#endregion
}