2025-03-15 01:39:43 +03:30

13 lines
189 B
C#

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