Example #1
0
 public Top10Controller(
     IBus bus,
     IDistributedCacheRepository distributedCacheRepository,
     ITop10Calculator top10Calculator)
 {
     _bus = bus;
     _distributedCacheRepository = distributedCacheRepository;
     _top10Calculator            = top10Calculator;
 }
Example #2
0
 public PullObjectWithGardenInAmsterdamHandler(
     IBus bus,
     IFundaDataPullingService pullingService,
     IDistributedCacheRepository cache,
     IMessageHandlingOmitManager handlingOmitManager)
 {
     _bus                 = bus;
     _pullingService      = pullingService;
     _cache               = cache;
     _handlingOmitManager = handlingOmitManager;
 }
Example #3
0
 public BasketBusinessServices(IDistributedCacheRepository distributedCacheRepository,
                               IAzureTableStorageRespository <ProductTableEntity> productRepository,
                               ILogger <BasketBusinessServices> logger,
                               IEventBusPublisher eventBusPublisher,
                               IEventBusSubscriber eventBusSubscriber,
                               IRestClient restClient,
                               TelemetryClient telemetryClient)
 {
     _distributedCacheRepository = distributedCacheRepository;
     _productRepository          = productRepository;
     _logger             = logger;
     _eventBusPublisher  = eventBusPublisher;
     _eventBusSubscriber = eventBusSubscriber;
     _restClient         = restClient;
     _telemetryClient    = telemetryClient;
 }
Example #4
0
 public LinkToStadiumEventHandler(IDistributedCacheRepository <FootballClubStadium> repository)
 {
     _repository = repository;
 }
 public PlayerTransferService(IDistributedCacheRepository <PlayerTransfer> repository)
 {
     _repository = repository;
 }
 public FootballClubToStadiumService(IDistributedCacheRepository <FootballClubStadium> repository)
 {
     _repository = repository;
 }
 public PlayerTransferEventHandler(IDistributedCacheRepository <PlayerTransfer> repository)
 {
     _repository = repository;
 }