예제 #1
0
 public AuthorizationCallbackCommandHandle(
     IThirdPartyOauthService thirdPartyOauthService,
     IOfficialAccountRepository officialAccountRepository)
 {
     _thirdPartyOauthService    = thirdPartyOauthService;
     _officialAccountRepository = officialAccountRepository;
 }
예제 #2
0
 public PcAuthorizationCommandHandle(IThirdPartyOauthService thirdPartyOauthService)
 {
     _thirdPartyOauthService = thirdPartyOauthService;
 }
예제 #3
0
 /// <summary>
 /// Authentication service contructor.
 /// </summary>
 /// <param name="thirdPartyLoginService"> </param>
 /// <param name="registeredUserRepository"></param>
 public AuthenticationService(IThirdPartyOauthService thirdPartyLoginService, IRegisteredUserRepository registeredUserRepository)
 {
     _thirdPartyLoginService = thirdPartyLoginService;
     _registeredUserRepository = registeredUserRepository;
 }
 public ThirdPartyAppService(IThirdPartyOauthService thirdPartyOauthService)
 {
     _thirdPartyOauthService = thirdPartyOauthService;
 }
예제 #5
0
 /// <summary>
 /// Authentication service contructor.
 /// </summary>
 /// <param name="thirdPartyLoginService"> </param>
 /// <param name="registeredUserRepository"></param>
 public AuthenticationService(IThirdPartyOauthService thirdPartyLoginService, IRegisteredUserRepository registeredUserRepository)
 {
     _thirdPartyLoginService   = thirdPartyLoginService;
     _registeredUserRepository = registeredUserRepository;
 }