public ExternalAuthController(IExternalAuthService externalAuthService, ICommonAuthService commonAuthService)
 {
     _externalAuthService = externalAuthService;
     _commonAuthService   = commonAuthService;
 }
Exemple #2
0
 public InternalAuthController(IInternalAuthService internalAuthService, ICommonAuthService commonAuthService)
 {
     _internalAuthService = internalAuthService;
     _commonAuthService   = commonAuthService;
 }
 public CommonAuthController(ICommonAuthService authService)
 {
     _authService = authService;
 }