コード例 #1
0
 public UserNotFoundEventHandler(
     AccountContext accountContext,
     IAccountIntegrationEventService userIntegrationEventService,
     IEventBusSynchronizationService eventBusSynchronizationService,
     ILogger <UserNotFoundEventHandler> logger)
 {
     _accountContext = accountContext;
     _accountIntegrationEventService = userIntegrationEventService;
     _logger = logger ?? throw new System.ArgumentNullException(nameof(logger));
     this._eventBusSynchronizationService = eventBusSynchronizationService;
 }
コード例 #2
0
 public AccountController(IAccountService accountService,
                          ILogger <AccountController> logger,
                          IMapper mapper,
                          IEventBusSynchronizationService eventBusSynchronizationService,
                          IAccountIntegrationEventService accountIntegrationEventService)
 {
     this._accountService = accountService;
     this._mapper         = mapper;
     this._logger         = logger;
     this._accountManagementIntegrationEventService = accountIntegrationEventService;
     this._eventBusSynchronizationService           = eventBusSynchronizationService;
 }
コード例 #3
0
 public EventBusSynchronizatonServiceTest()
 {
     this.eventBusSynchronizationService = new EventBusSynchronizationService();
 }