Beispiel #1
0
 public UsersController(MovieRamaContext dbContext, IHashingService hashingService, IJwtService jwtService, IRefreshTokenService refreshTokenService, AuthenticationService authService)
 {
     _dbContext           = dbContext;
     _hashingService      = hashingService;
     _jwtService          = jwtService;
     _refreshTokenService = refreshTokenService;
     _authService         = authService;
 }
Beispiel #2
0
 public MoviesController(MovieRamaContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AuthenticationService(MovieRamaContext dbContext, IHashingService hashingService)
 {
     _dbContext      = dbContext;
     _hashingService = hashingService;
 }