mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-14 04:28:38 +08:00
13 lines
189 B
C#
13 lines
189 B
C#
namespace BuildingBlocks.EFCore
|
|
{
|
|
public interface IDataSeeder
|
|
{
|
|
Task SeedAllAsync();
|
|
}
|
|
|
|
public interface ITestDataSeeder
|
|
{
|
|
Task SeedAllAsync();
|
|
}
|
|
}
|