Browse Source

RemoteServiceOptions to AbpRemoteServiceOptions cont.

pull/1919/head
Yunus Emre Kalkan 6 years ago
parent
commit
680b903800
  1. 4
      samples/MicroserviceDemo/applications/ConsoleClientDemo/ClientDemoService.cs

4
samples/MicroserviceDemo/applications/ConsoleClientDemo/ClientDemoService.cs

@ -15,13 +15,13 @@ namespace ConsoleClientDemo
private readonly IIdentityUserAppService _userAppService;
private readonly IProductAppService _productAppService;
private readonly IIdentityModelAuthenticationService _authenticator;
private readonly RemoteServiceOptions _remoteServiceOptions;
private readonly AbpRemoteServiceOptions _remoteServiceOptions;
public ClientDemoService(
IIdentityUserAppService userAppService,
IProductAppService productAppService,
IIdentityModelAuthenticationService authenticator,
IOptions<RemoteServiceOptions> remoteServiceOptions)
IOptions<AbpRemoteServiceOptions> remoteServiceOptions)
{
_userAppService = userAppService;
_authenticator = authenticator;

Loading…
Cancel
Save