Beispiel #1
0
 public SecurityController(NatsUserService natsUserService, DiscordOAuthService discordOAuthService, NatsDiscordService natsDiscordService, JwtService jwtService, IConfiguration config)
 {
     _natsUserService     = natsUserService;
     _discordOAuthService = discordOAuthService;
     _natsDiscordService  = natsDiscordService;
     _jwtService          = jwtService;
     _config = config;
 }
 public HomeController(DiscordOAuthService oAuthService, DiscordService discordService, ButtcoinService buttcoinService)
 {
     _oAuthService    = oAuthService;
     _discordService  = discordService;
     _buttcoinService = buttcoinService;
 }
Beispiel #3
0
 public AuthController(DiscordOAuthService oAuthService, IRequestClient <LoginUserRequest> discordLoginClient, JwtService jwtService)
 {
     _oAuthService       = oAuthService;
     _discordLoginClient = discordLoginClient;
     _jwtService         = jwtService;
 }