public CreateAuthenticationMeansHandler(IAuthenticationMeansRepository meansRepository, IBusPublisher busPublisher)
 {
     _repository   = meansRepository ?? throw new ArgumentNullException(nameof(meansRepository));
     _busPublisher = busPublisher ?? throw new ArgumentNullException(nameof(busPublisher));
 }
 public UpdateAuthenticationMeansValueHandler(IAuthenticationMeansRepository repository, IBusPublisher busPublisher)
 {
     _repository   = repository ?? throw new ArgumentNullException(nameof(repository));
     _busPublisher = busPublisher ?? throw new ArgumentNullException(nameof(busPublisher));
 }
Пример #3
0
 public AuthenticationMeansVerifier(IAuthenticationMeansRepository repository)
 {
     _repository = repository ?? throw new ArgumentNullException(nameof(repository));
 }
Пример #4
0
 public BrowseAuthenticationMeansHandler(IAuthenticationMeansRepository repository, IMapper mapper)
 {
     _repository = repository ?? throw new ArgumentNullException(nameof(repository));
     _mapper     = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }