Ejemplo n.º 1
0
 public LoginModel(IAuthInterface authInterface)
 {
     _authInterface = authInterface;
 }
 public AuthController(IAuthInterface <AuthorDependency> authores)
 {
     this.authores = authores;
 }
Ejemplo n.º 3
0
 public AuthController(IAuthInterface auth, IIdentityServerInteractionService _interactionService)
 {
     this.AuthRepo      = auth;
     interactionService = _interactionService;
 }
Ejemplo n.º 4
0
 public AuthController(IAuthInterface repo, IConfiguration config)
 {
     this._config = config;
     this._repo   = repo;
 }
Ejemplo n.º 5
0
 public AuthorizationWCFContract(ILoggerService logger, IAuthInterface authInterface)
 {
     this._loggerService = logger;
     this._authInterface = authInterface;
 }