Exemplo n.º 1
0
 public AuthController(IAuthManager authManager, IUserRepository userRepository, IOAuthRepository oAuthRepository, ILoginManager loginManager)
 {
     _authManager     = authManager;
     _userRepository  = userRepository;
     _oAuthRepository = oAuthRepository;
     _loginManager    = loginManager;
 }
Exemplo n.º 2
0
 public OAuthApp(IOAuthRepository oauthRepository, IAutoMapperAdapter mapper)
 {
     _oauthRepository = oauthRepository;
     _mapper          = mapper;
 }
Exemplo n.º 3
0
 public OAuthApiController(IOAuthRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 4
0
 public OAuthServices(IRepository repository, IOAuthRepository authRepository)
 {
     _authRepository = authRepository;
     _repository     = repository;
 }
Exemplo n.º 5
0
 public AdAccountsApiController(IAdAccountsRepository repository, IOAuthRepository oauthRepository)
 {
     _repository      = repository;
     _oauthRepository = oauthRepository;
 }
Exemplo n.º 6
0
 public OAuthService(IOAuthRepository oAuthRepository)
 {
     _oAuthRepository = oAuthRepository;
 }
Exemplo n.º 7
0
 public OAuthServices(IRepository repository, IOAuthRepository authRepository)
 {
     _authRepository = authRepository;
     _repository = repository;
 }