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.
19 lines
639 B
19 lines
639 B
using LINGYUN.Abp.MicroService.AuthServer.DataSeeds;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace LINGYUN.Abp.MicroService.AuthServer;
|
|
|
|
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);
|
|
}
|
|
}
|
|
|