コード例 #1
0
ファイル: AuthController.cs プロジェクト: axispod/Shortest
 public AuthController(ITokenService tokenService, IDataUserService userService)
 {
     this.tokenService = tokenService;
     this.userService  = userService;
 }
コード例 #2
0
ファイル: JwtTokenService.cs プロジェクト: axispod/Shortest
 public JwtTokenService(IDataUserService userService)
 {
     this.userService = userService;
 }