Пример #1
0
 public EventService(
     HTTPService http,
     ObserverLocator observerLocator)
 {
     _http            = http;
     _observerLocator = observerLocator;
 }
Пример #2
0
 public EventService(
     APIProxyService http,
     ObserverLocator observerLocator)
 {
     _http            = http;
     _observerLocator = observerLocator;
 }
Пример #3
0
 public UserFriendlyServerExceptionMiddleware(
     RequestDelegate next,
     ServiceLocation serviceLocation,
     ObserverLocator statusLocator,
     ILogger <UserFriendlyServerExceptionMiddleware> logger,
     EventService eventService,
     AppsContainer appsContainer)
 {
     _next            = next;
     _serviceLocation = serviceLocation;
     _statusLocator   = statusLocator;
     _logger          = logger;
     _eventService    = eventService;
     _appsContainer   = appsContainer;
 }
Пример #4
0
 public Seeder(
     ServiceLocation serviceLocation,
     ObserverLocator observerLocator,
     StargateLocator stargateLocator,
     DeveloperLocator developerLocator,
     ArchonLocator archonLocator,
     ProbeLocator probeLocator,
     WrapgateLocator wrapgateLocator,
     StatusDbContext dbContext)
 {
     this.serviceLocation  = serviceLocation;
     this.observerLocator  = observerLocator;
     this.stargateLocator  = stargateLocator;
     this.developerLocator = developerLocator;
     this.archonLocator    = archonLocator;
     this.probeLocator     = probeLocator;
     this.wrapgateLocator  = wrapgateLocator;
     this.dbContext        = dbContext;
 }