public TestController( IDistributedEventBus distributedEventBus, IPaymentAppService paymentAppService) { _distributedEventBus = distributedEventBus; _paymentAppService = paymentAppService; }
public AggregateReRouteAppService(IAggregateReRouteRepository aggregateReRouteRepository, IDistributedEventBus distributedEventBus ) { _aggregateReRouteRepository = aggregateReRouteRepository; _distributedEventBus = distributedEventBus; }
public MessageSender( IDistributedEventBus eventBus, ISnowflakeIdrGenerator snowflakeIdrGenerator) { EventBus = eventBus; SnowflakeIdrGenerator = snowflakeIdrGenerator; }
public FlashSalePlanAppService( IFlashSalePlanRepository flashSalePlanRepository, IProductAppService productAppService, IDistributedCache <FlashSalePlanPreOrderCacheItem> tokenDistributedCache, IDistributedCache <FlashSalePlanCacheItem, Guid> planDistributedCache, IDistributedEventBus distributedEventBus, IFlashSaleResultRepository flashSaleResultRepository, IAbpDistributedLock distributedLock, IFlashSalePlanHasher flashSalePlanHasher, IFlashSaleInventoryManager flashSaleInventoryManager, IDistributedCache distributedCache, IOptionsMonitor <FlashSalesOptions> optionsMonitor) : base(flashSalePlanRepository) { FlashSalePlanRepository = flashSalePlanRepository; ProductAppService = productAppService; PreOrderDistributedCache = tokenDistributedCache; PlanDistributedCache = planDistributedCache; DistributedEventBus = distributedEventBus; FlashSaleResultRepository = flashSaleResultRepository; DistributedLock = distributedLock; FlashSalePlanHasher = flashSalePlanHasher; FlashSaleInventoryManager = flashSaleInventoryManager; DistributedCache = distributedCache; Options = optionsMonitor.CurrentValue; }
public UnitOfWorkEventPublisher( ILocalEventBus localEventBus, IDistributedEventBus distributedEventBus) { _localEventBus = localEventBus; _distributedEventBus = distributedEventBus; }
public OrderCreatedEventHandler( ICurrentTenant currentTenant, IDistributedEventBus distributedEventBus) { _currentTenant = currentTenant; _distributedEventBus = distributedEventBus; }
public CurrencyManagementAppService( ICurrencyRepository repository ) : base(repository) { _repository = repository; EventBus = NullDistributedEventBus.Instance; }
public CancelPaymentEventHandler( IOrderRepository orderRepository, IDistributedEventBus distributedEventBus) { _orderRepository = orderRepository; _distributedEventBus = distributedEventBus; }
public App1MessagingService( FS.LineNotify.ILineNotifyGateway lineNotifyGateway, IDistributedEventBus distributedEventBus ) { _lineNotifyGateway = lineNotifyGateway; _distributedEventBus = distributedEventBus; }
public OcelotAppService(IOcelotRepository ocelotRepository, IOcelotManager ocelotManager, IDistributedEventBus distributedEventBus) : base(ocelotRepository) { OcelotRepository = ocelotRepository; OcelotManager = ocelotManager; DistributedEventBus = distributedEventBus; }
public ChatAppservice(IRepository <Message, Guid> messageRepository, IIdentityUserRepository identityUserRepository, ILookupNormalizer lookupNormalizer, IDistributedEventBus distributedEventBus, IProducer producer) { _messageRepository = messageRepository; _identityUserRepository = identityUserRepository; _lookupNormalizer = lookupNormalizer; _distributedEventBus = distributedEventBus; _producer = producer; }
public NotificationSender( IDistributedEventBus distributedEventBus, IOptions <AbpNotificationOptions> options) { Options = options.Value; DistributedEventBus = distributedEventBus; Logger = NullLogger <NotificationSender> .Instance; }
public ChatController(IProducer producer, IDistributedEventBus distributedEventBus, IChatAppServices chatAppServices, IKafkaProducer kafkaProducer) { _producer = producer; _distributedEventBus = distributedEventBus; _chatAppServices = chatAppServices; _kafkaProducer = kafkaProducer; }
public ReRouteAppService( IReRouteRepository reRouteRepository, IDistributedEventBus distributedEventBus ) { _reRouteRepository = reRouteRepository; _distributedEventBus = distributedEventBus; }
public SampleAppService( IRepository <Sample> sampleRepository, IDistributedEventBus distributedEvent ) { _sampleRepository = sampleRepository; _distributedEventBus = distributedEvent; }
public MonitorWorker( AbpAsyncTimer timer, IServiceScopeFactory serviceScopeFactory, IDistributedEventBus distributedEventBus) : base(timer, serviceScopeFactory) { _distributedEventBus = distributedEventBus; Timer.Period = (int)KetumConsts.MonitorWorkerPeriod.TotalMilliseconds; }
public PipelineAppService( IRepository <Pipeline, int> pipelineRepository, IDistributedEventBus distributedEventBus, ICurrentUser currentUser) { _pipelineRepository = pipelineRepository; _distributedEventBus = distributedEventBus; _currentUser = currentUser; }
public BulkAssetOccupancyResultEventHandler( IOrderManager orderManager, IOrderRepository orderRepository, IDistributedEventBus distributedEventBus) { _orderManager = orderManager; _orderRepository = orderRepository; _distributedEventBus = distributedEventBus; }
public LineNotifyWebhook( IDistributedEventBus distributedEventBus, ILineNotifyGateway lineNotifyGateway ) { LocalizationResource = typeof(LineNotifyResource); _distributedEventBus = distributedEventBus; _lineNotifyGateway = lineNotifyGateway; }
public DefaultProductInventoryProvider( IUnitOfWorkManager unitOfWorkManager, IDistributedEventBus distributedEventBus, IProductInventoryRepository productInventoryRepository) { _unitOfWorkManager = unitOfWorkManager; _distributedEventBus = distributedEventBus; _productInventoryRepository = productInventoryRepository; }
public RefundOrderEventHandler( IJsonSerializer jsonSerializer, IPaymentRepository paymentRepository, IDistributedEventBus distributedEventBus) { _jsonSerializer = jsonSerializer; _paymentRepository = paymentRepository; _distributedEventBus = distributedEventBus; }
public PaymentAppService( IDistributedEventBus distributedEventBus, IOrderAppService orderAppService, IPaymentRepository repository) : base(repository) { _distributedEventBus = distributedEventBus; _orderAppService = orderAppService; _repository = repository; }
public TenantAppService( ITenantRepository tenantRepository, ITenantManager tenantManager, IDistributedEventBus eventBus) { EventBus = eventBus; TenantRepository = tenantRepository; TenantManager = tenantManager; }
public BlogFeatureAdminAppService( IBlogFeatureRepository blogFeatureRepository, BlogFeatureManager blogFeatureManager, IDistributedEventBus eventBus) { BlogFeatureRepository = blogFeatureRepository; BlogFeatureManager = blogFeatureManager; EventBus = eventBus; }
public GlobalConfigurationAppService( IGlobalConfigRepository globalConfigRepository, ISnowflakeIdGenerator snowflakeIdGenerator, IDistributedEventBus distributedEventBus ) { _globalConfigRepository = globalConfigRepository; _snowflakeIdGenerator = snowflakeIdGenerator; _distributedEventBus = distributedEventBus; }
public NotificationSender( IDistributedEventBus distributedEventBus, ISnowflakeIdrGenerator snowflakeIdrGenerator, IOptions <AbpNotificationOptions> options) { Options = options.Value; DistributedEventBus = distributedEventBus; SnowflakeIdGenerator = snowflakeIdrGenerator; Logger = NullLogger <NotificationSender> .Instance; }
public TenantAppService( ITenantRepository tenantRepository, ITenantManager tenantManager, IDataSeeder dataSeeder, IDistributedEventBus distributedEventBus) { DataSeeder = dataSeeder; TenantRepository = tenantRepository; TenantManager = tenantManager; DistributedEventBus = distributedEventBus; }
public PaymentSynchronizer( IObjectMapper objectMapper, ICurrentTenant currentTenant, IPaymentRepository paymentRepository, IDistributedEventBus distributedEventBus) { _objectMapper = objectMapper; _currentTenant = currentTenant; _paymentRepository = paymentRepository; _distributedEventBus = distributedEventBus; }
public PaymentAppService( IPayableChecker payableChecker, IDistributedEventBus distributedEventBus, IOrderAppService orderAppService, IPaymentRepository repository) : base(repository) { _payableChecker = payableChecker; _distributedEventBus = distributedEventBus; _orderAppService = orderAppService; _repository = repository; }
public CommentPublicAppService( ICommentRepository commentRepository, ICmsUserLookupService cmsUserLookupService, IDistributedEventBus distributedEventBus, CommentManager commentManager) { CommentRepository = commentRepository; CmsUserLookupService = cmsUserLookupService; DistributedEventBus = distributedEventBus; CommentManager = commentManager; }