示例#1
0
 public AuthController(IAuthManager authManager, IUserRepository userRepository, IOAuthRepository oAuthRepository, ILoginManager loginManager)
 {
     _authManager     = authManager;
     _userRepository  = userRepository;
     _oAuthRepository = oAuthRepository;
     _loginManager    = loginManager;
 }
示例#2
0
文件: OAuthApp.cs 项目: vns140/ltm
 public OAuthApp(IOAuthRepository oauthRepository, IAutoMapperAdapter mapper)
 {
     _oauthRepository = oauthRepository;
     _mapper          = mapper;
 }
示例#3
0
 public OAuthApiController(IOAuthRepository repository)
 {
     _repository = repository;
 }
示例#4
0
 public OAuthServices(IRepository repository, IOAuthRepository authRepository)
 {
     _authRepository = authRepository;
     _repository     = repository;
 }
示例#5
0
 public AdAccountsApiController(IAdAccountsRepository repository, IOAuthRepository oauthRepository)
 {
     _repository      = repository;
     _oauthRepository = oauthRepository;
 }
示例#6
0
 public OAuthService(IOAuthRepository oAuthRepository)
 {
     _oAuthRepository = oAuthRepository;
 }
示例#7
0
 public OAuthServices(IRepository repository, IOAuthRepository authRepository)
 {
     _authRepository = authRepository;
     _repository = repository;
 }