public ConfigureAzureOptions(IOptions <AzureAdOptions> options, TokenService tokenService)
 {
     _azureOptions = options.Value;
     _tokenService = tokenService;
 }
 public ProfileController(IHostingEnvironment env, ILogger <ProfileController> logger, TokenService tokenService)
 {
     this.env          = env;
     this.logger       = logger;
     this.tokenService = tokenService;
 }