public AuthController(IAuthManager authManager, IUserRepository userRepository, IOAuthRepository oAuthRepository, ILoginManager loginManager) { _authManager = authManager; _userRepository = userRepository; _oAuthRepository = oAuthRepository; _loginManager = loginManager; }
public OAuthApp(IOAuthRepository oauthRepository, IAutoMapperAdapter mapper) { _oauthRepository = oauthRepository; _mapper = mapper; }
public OAuthApiController(IOAuthRepository repository) { _repository = repository; }
public OAuthServices(IRepository repository, IOAuthRepository authRepository) { _authRepository = authRepository; _repository = repository; }
public AdAccountsApiController(IAdAccountsRepository repository, IOAuthRepository oauthRepository) { _repository = repository; _oauthRepository = oauthRepository; }
public OAuthService(IOAuthRepository oAuthRepository) { _oAuthRepository = oAuthRepository; }