Пример #1
0
 public DeveloperApiService(
     DeveloperLocator serviceLocation,
     HTTPService http)
 {
     _serviceLocation = serviceLocation;
     _http            = http;
 }
 public DeveloperApiService(
     DeveloperLocator serviceLocation,
     APIProxyService http,
     AiurCache cache)
 {
     _serviceLocation = serviceLocation;
     _http            = http;
     _cache           = cache;
 }
Пример #3
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;
 }
 public MockDeveloperApiService(
     DeveloperLocator serviceLocation,
     APIProxyService http,
     AiurCache cache) : base(serviceLocation, http, cache)
 {
 }