namespace Prefab.Data.Seeder;
///
/// Represents a seeder that can be used to seed the database with data.
///
public interface ISeeder
{
///
/// Executes the seed task.
///
Task Execute(IServiceProvider serviceProvider, CancellationToken cancellationToken);
}