public TwitterAuthenticationController(
     ITwitterClient twitterClient,
     IJwtService jwtService,
     IMapper mapper,
     ISocialMediaUserLinkService socialMediaUserLinkService
     )
 {
     _twitterClient = twitterClient;
     _jwtService    = jwtService;
     _mapper        = mapper;
     _socialMediaUserLinkService = socialMediaUserLinkService;
 }
Example #2
0
 public MicrosoftAuthenticationController(
     MicrosoftGraphConfiguration configuration,
     IMicrosoftGraphClient microsoftGraphClient,
     IJwtService jwtService,
     IMapper mapper,
     IRngUtil rngUtil,
     ISocialMediaUserLinkService socialMediaUserLinkService
     )
 {
     _configuration        = configuration;
     _microsoftGraphClient = microsoftGraphClient;
     _jwtService           = jwtService;
     _mapper  = mapper;
     _rngUtil = rngUtil;
     _socialMediaUserLinkService = socialMediaUserLinkService;
 }
 public GoogleAuthenticationController(
     GoogleConfiguration configuration,
     IGoogleClient googleClient,
     IJwtService jwtService,
     IMapper mapper,
     IRngUtil rngUtil,
     ISocialMediaUserLinkService socialMediaUserLinkService
     )
 {
     _configuration = configuration;
     _googleClient  = googleClient;
     _jwtService    = jwtService;
     _mapper        = mapper;
     _rngUtil       = rngUtil;
     _socialMediaUserLinkService = socialMediaUserLinkService;
 }
Example #4
0
 public FacebookAuthenticationController(
     FacebookConfiguration configuration,
     IFacebookClient facebookClient,
     IJwtService jwtService,
     IMapper mapper,
     IRngUtil rngUtil,
     ISocialMediaUserLinkService socialMediaUserLinkService
     )
 {
     _configuration              = configuration;
     _facebookClient             = facebookClient;
     _jwtService                 = jwtService;
     _mapper                     = mapper;
     _rngUtil                    = rngUtil;
     _socialMediaUserLinkService = socialMediaUserLinkService;
 }