You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
644 B
20 lines
644 B
using LY.MicroService.AuthServer.DbMigrator.DataSeeds;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace LY.MicroService.AuthServer.DbMigrator;
|
|
|
|
public class AuthServerInitializeDataSeeder : ITransientDependency
|
|
{
|
|
protected IdentityUserNotificationDataSeeder UserNotificationDataSeeder { get; }
|
|
public AuthServerInitializeDataSeeder(IdentityUserNotificationDataSeeder userNotificationDataSeeder)
|
|
{
|
|
UserNotificationDataSeeder = userNotificationDataSeeder;
|
|
}
|
|
|
|
public virtual async Task SeedAsync(DataSeedContext context)
|
|
{
|
|
await UserNotificationDataSeeder.SeedAsync(context);
|
|
}
|
|
}
|
|
|
|
|