2025-03-15 16:54:20 +03:30

13 lines
189 B
C#

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