Beispiel #1
0
 public UserService(
     IUserRepositoryDb userRepositoryDb,
     IRefreshTokenRepositoryCache refreshTokenRepositoryCache
     )
 {
     this.userRepositoryDb            = userRepositoryDb;
     this.refreshTokenRepositoryCache = refreshTokenRepositoryCache;
 }
Beispiel #2
0
 public UserController(
     IUserService userService,
     TokenService tokenService,
     IRefreshTokenRepositoryCache refreshTokenRepositoryCache,
     AppSettings settings
     )
 {
     this.userService  = userService;
     this.tokenService = tokenService;
     this.refreshTokenRepositoryCache = refreshTokenRepositoryCache;
     this.settings = settings;
 }