17 lines
372 B
C#
17 lines
372 B
C#
namespace Nop.Core.Infrastructure;
|
|
|
|
/// <summary>
|
|
/// Interface which should be implemented by tasks run on startup
|
|
/// </summary>
|
|
public partial interface IStartupTask
|
|
{
|
|
/// <summary>
|
|
/// Executes a task
|
|
/// </summary>
|
|
void Execute();
|
|
|
|
/// <summary>
|
|
/// Gets order of this startup task implementation
|
|
/// </summary>
|
|
int Order { get; }
|
|
} |