コード例 #1
0
 public ExternalAuthController(IExternalAuthService externalAuthService, ICommonAuthService commonAuthService)
 {
     _externalAuthService = externalAuthService;
     _commonAuthService   = commonAuthService;
 }
コード例 #2
0
 public InternalAuthController(IInternalAuthService internalAuthService, ICommonAuthService commonAuthService)
 {
     _internalAuthService = internalAuthService;
     _commonAuthService   = commonAuthService;
 }
コード例 #3
0
 public CommonAuthController(ICommonAuthService authService)
 {
     _authService = authService;
 }