public SetupController( IAssetStore assetStore, IOptions <MyUIOptions> uiOptions, IOptions <MyIdentityOptions> identityOptions, IUrlGenerator urlGenerator, IUserService userService) { this.assetStore = assetStore; this.identityOptions = identityOptions.Value; this.uiOptions = uiOptions.Value; this.urlGenerator = urlGenerator; this.userService = userService; }
public UIController(IOptions <MyUIOptions> uiOptions) { this.uiOptions = uiOptions.Value; }