mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-16 07:26:25 +08:00
12 lines
188 B
C#
12 lines
188 B
C#
namespace BuildingBlocks.EFCore
|
|
{
|
|
public interface IDataSeeder
|
|
{
|
|
Task SeedAllAsync();
|
|
}
|
|
|
|
public interface ITestDataSeeder
|
|
{
|
|
Task SeedAllAsync();
|
|
}
|
|
} |