/// <summary>
 /// .ctor
 /// </summary>
 public TokenManagementController(ITokenManagementService tokenService,
                                  IMapper mapper,
                                  ILogger <TokenManagementController> logger)
 {
     _tokenService = tokenService;
     _mapper       = mapper;
     _logger       = logger;
 }
 public SecurityController(ITokenManagementService tokenManagementService)
 {
     _tokenManagementService = tokenManagementService;
 }
Example #3
0
 public ResultProcessor(IResultsRepository repo, ITokenManagementService tokensService)
 {
     this.repo          = repo;
     this.tokensService = tokensService;
 }