public ParticipantController(IHearingsService hearingsService, IParticipantService participantService, IKinlyPlatformService kinlyPlatformService,
                              IPollyRetryService pollyRetryService)
 {
     _hearingService       = hearingsService;
     _participantService   = participantService;
     _kinlyPlatformService = kinlyPlatformService;
     _pollyRetryService    = pollyRetryService;
 }
 public CreateNotificationService(ICommandHandler commandHandler, IAsyncNotificationClient asyncNotificationClient, IQueryHandler queryHandler, IPollyRetryService pollyRetryService, ILogger <CreateNotificationService> logger)
 {
     _commandHandler          = commandHandler;
     _asyncNotificationClient = asyncNotificationClient;
     _queryHandler            = queryHandler;
     _pollyRetryService       = pollyRetryService;
     _logger = logger;
 }
 public HearingsService(IPollyRetryService pollyRetryService, IUserAccountService userAccountService,
                        INotificationApiClient notificationApiClient, IVideoApiClient videoApiClient, IBookingsApiClient bookingsApiClient, ILogger <HearingsService> logger)
 {
     _pollyRetryService     = pollyRetryService;
     _userAccountService    = userAccountService;
     _notificationApiClient = notificationApiClient;
     _videoApiClient        = videoApiClient;
     _bookingsApiClient     = bookingsApiClient;
     _logger = logger;
 }
 public KinlyPlatformService(IKinlyApiClient kinlyApiClient,
                             IOptions <KinlyConfiguration> kinlyConfigOptions,
                             ILogger <KinlyPlatformService> logger,
                             IKinlySelfTestHttpClient kinlySelfTestHttpClient,
                             IPollyRetryService pollyRetryService)
 {
     _kinlyApiClient          = kinlyApiClient;
     _logger                  = logger;
     _kinlyConfigOptions      = kinlyConfigOptions.Value;
     _kinlySelfTestHttpClient = kinlySelfTestHttpClient;
     _pollyRetryService       = pollyRetryService;
 }
Exemplo n.º 5
0
 public KinlyPlatformService(IKinlyApiClient kinlyApiClient,
                             IOptions <ServicesConfiguration> servicesConfigOptions,
                             ILogger <KinlyPlatformService> logger, IRoomReservationService roomReservationService,
                             IKinlySelfTestHttpClient kinlySelfTestHttpClient,
                             IPollyRetryService pollyRetryService)
 {
     _kinlyApiClient          = kinlyApiClient;
     _logger                  = logger;
     _servicesConfigOptions   = servicesConfigOptions.Value;
     _roomReservationService  = roomReservationService;
     _kinlySelfTestHttpClient = kinlySelfTestHttpClient;
     _pollyRetryService       = pollyRetryService;
 }
 public ConferenceController(IQueryHandler queryHandler, ICommandHandler commandHandler,
                             IVideoPlatformService videoPlatformService, IOptions <KinlyConfiguration> kinlyConfiguration,
                             ILogger <ConferenceController> logger, IAudioPlatformService audioPlatformService,
                             IAzureStorageServiceFactory azureStorageServiceFactory, IPollyRetryService pollyRetryService)
 {
     _queryHandler         = queryHandler;
     _commandHandler       = commandHandler;
     _videoPlatformService = videoPlatformService;
     _kinlyConfiguration   = kinlyConfiguration.Value;
     _logger = logger;
     _audioPlatformService       = audioPlatformService;
     _azureStorageServiceFactory = azureStorageServiceFactory;
     _pollyRetryService          = pollyRetryService;
 }
Exemplo n.º 7
0
 public PollyRetryServiceTests()
 {
     _pollyRetryService = new PollyRetryService();
 }