コード例 #1
0
 public AccountActivatedHandler(IHandler handler,
                                IUserRepository repository,
                                IAccountStateService stateService,
                                IUserCache cache)
 {
     _handler      = handler;
     _repository   = repository;
     _stateService = stateService;
     _cache        = cache;
 }
コード例 #2
0
 public AccountUnlockedHandler(IHandler handler,
                               IUserRepository userRepository,
                               IAccountStateService stateService,
                               IUserCache cache)
 {
     _handler        = handler;
     _userRepository = userRepository;
     _stateService   = stateService;
     _cache          = cache;
 }
コード例 #3
0
 public SignedInHandler(IHandler handler,
                        IUserRepository repository,
                        IUserServiceClient userServiceClient,
                        IAccountStateService accountStateService,
                        IUserCache cache)
 {
     _handler             = handler;
     _repository          = repository;
     _userServiceClient   = userServiceClient;
     _accountStateService = accountStateService;
     _cache = cache;
 }