Browse Source

fix: 移除多余引用

pull/89/head
王军 3 years ago
parent
commit
24d3090167
  1. 5
      aspnet-core/modules/BasicManagement/src/Lion.AbpPro.BasicManagement.Application/Users/UserAppService.cs
  2. 2
      aspnet-core/services/host/Lion.AbpPro.HttpApi.Host/appsettings.json

5
aspnet-core/modules/BasicManagement/src/Lion.AbpPro.BasicManagement.Application/Users/UserAppService.cs

@ -17,22 +17,19 @@ namespace Lion.AbpPro.BasicManagement.Users
private readonly IIdentityUserRepository _identityUserRepository;
private readonly IExcelExporter _excelExporter;
private readonly IOptions<IdentityOptions> _options;
private readonly IStringLocalizer<IdentityResource> _localizer;
public UserAppService(
IIdentityUserAppService identityUserAppService,
IdentityUserManager userManager,
IIdentityUserRepository userRepository,
IExcelExporter excelExporter,
IOptions<IdentityOptions> options,
IStringLocalizer<IdentityResource> localizer)
IOptions<IdentityOptions> options)
{
_identityUserAppService = identityUserAppService;
_userManager = userManager;
_identityUserRepository = userRepository;
_excelExporter = excelExporter;
_options = options;
_localizer = localizer;
}
/// <summary>

2
aspnet-core/services/host/Lion.AbpPro.HttpApi.Host/appsettings.json

@ -38,7 +38,7 @@
},
"Hangfire": {
"Redis": {
"Host": "localhost:6379",
"Host": "localhost:6379,password=1q2w3E*",
"DB": "2"
}
},

Loading…
Cancel
Save