public UserService(DatabaseContext context, ITokenAuthorization tokenAuthorizationService) { _dbContext = context; _tokenAuthorizationService = tokenAuthorizationService; }
public UsersService(DatabaseContext context, ITokenAuthorization tokenAuthorizationService, IHashProvider hashProvider) { _context = context; _tokenAuthorizationService = tokenAuthorizationService; _hashProvider = hashProvider; }