Esempio n. 1
0
 public AuthorizationCallbackCommandHandle(
     IThirdPartyOauthService thirdPartyOauthService,
     IOfficialAccountRepository officialAccountRepository)
 {
     _thirdPartyOauthService    = thirdPartyOauthService;
     _officialAccountRepository = officialAccountRepository;
 }
Esempio n. 2
0
 public PcAuthorizationCommandHandle(IThirdPartyOauthService thirdPartyOauthService)
 {
     _thirdPartyOauthService = thirdPartyOauthService;
 }
 /// <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;
 }
Esempio n. 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;
 }