Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

EventConsumer.cs

using Nop.Services.Plugins;
using Nop.Web.Framework.Events;

namespace Nop.Plugin.Misc.Dynamics365.Services;

/// 
/// Represents plugin event consumer
/// 
public class EventConsumer : BaseAdminMenuCreatedEventConsumer
{
    public EventConsumer(IPluginManager pluginManager) :
        base(pluginManager)
    {
    }

    /// 
    /// Gets the plugin system name
    /// 
    protected override string PluginSystemName => Dynamics365Defaults.SystemName;

    /// 
    /// The system name of the menu item before with need to insert the current one
    /// 
    protected override string BeforeMenuSystemName => "Local plugins";
}