13 lines
379 B
C#
13 lines
379 B
C#
// Copyright (c) HelloShop Corporation. All rights reserved.
|
|
// See the license file in the project root for more information.
|
|
|
|
namespace HelloShop.ServiceDefaults.Infrastructure
|
|
{
|
|
public interface IDataSeedingProvider
|
|
{
|
|
int Order => default;
|
|
|
|
Task SeedingAsync(IServiceProvider serviceProvider, CancellationToken cancellationToken = default);
|
|
}
|
|
}
|