public AuthenticationController(
     IResourceBuilder resourceBuilder,
     IAuthenticationApplicationService authenticationApplicationService)
 {
     _resourceBuilder = resourceBuilder;
     _authenticationApplicationService = authenticationApplicationService;
 }
예제 #2
0
 public AuthenticationApplicationServiceSecurityDecorator(
     ISecurityApplicationService securityApplicationService,
     IAuthenticationApplicationService authenticationApplicationService)
 {
     _securityApplicationService       = securityApplicationService;
     _authenticationApplicationService = authenticationApplicationService;
 }
 public AuthenticationPort(IAuthenticationApplicationService authenticationApplicationService, IMapper mapper)
 {
     _authenticationApplicationService = authenticationApplicationService;
     _mapper = mapper;
 }
 public AuthenticationController(INotification notificador, IAuthenticationApplicationService authenticationApplicationService) : base(notificador)
 {
     _authenticationApplicationService = authenticationApplicationService;
 }
예제 #5
0
 public TokenController(IAuthenticationApplicationService authenticationApplicationService)
 {
     _authenticationApplicationService = authenticationApplicationService;
 }
예제 #6
0
 public AuthenticationController(IAuthenticationApplicationService authenticationApplicationService)
 {
     this.authenticationApplicationService = authenticationApplicationService;
 }
예제 #7
0
 public void Initalize()
 {
     _notification   = new Notificador();
     _userRepository = new UserRepository();
     _authenticationApplicationService = new AuthenticationApplicationService(_notification, _userRepository);
 }