2025-07-23 16:18:05 +03:30

12 lines
188 B
C#

namespace BuildingBlocks.EFCore
{
public interface IDataSeeder
{
Task SeedAllAsync();
}
public interface ITestDataSeeder
{
Task SeedAllAsync();
}
}