Webiant Logo Webiant Logo
  1. No results found.

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

IStartupTask.cs

namespace Nop.Core.Infrastructure;

/// 
/// Interface which should be implemented by tasks run on startup
/// 
public partial interface IStartupTask
{
    /// 
    /// Executes a task
    /// 
    void Execute();

    /// 
    /// Gets order of this startup task implementation
    /// 
    int Order { get; }
}