mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
8 lines
130 B
C#
8 lines
130 B
C#
namespace BuildingBlocks.EFCore;
|
|
|
|
public interface ISeedManager
|
|
{
|
|
Task ExecuteSeedAsync();
|
|
Task ExecuteTestSeedAsync();
|
|
}
|