Ejemplo n.º 1
0
 public PushMessageService(
     HTTPService httpService,
     StargateLocator serviceLocation)
 {
     _httpService     = httpService;
     _stargateLocator = serviceLocation;
 }
Ejemplo n.º 2
0
 public ChannelService(
     StargateLocator serviceLocation,
     HTTPService http)
 {
     _stargateLocator = serviceLocation;
     _http            = http;
 }
Ejemplo n.º 3
0
 public AuthController(
     StargateLocator serviceLocation,
     AuthService <KahlaUser> authService,
     UserManager <KahlaUser> userManager,
     SignInManager <KahlaUser> signInManager,
     UserService userService,
     AppsContainer appsContainer,
     KahlaPushService pusher,
     ChannelService channelService,
     KahlaDbContext dbContext,
     IOptions <List <DomainSettings> > optionsAccessor,
     EventService eventService,
     OnlineJudger onlineJudger,
     StargatePushService stargatePushService)
 {
     _stargateLocator     = serviceLocation;
     _authService         = authService;
     _userManager         = userManager;
     _signInManager       = signInManager;
     _userService         = userService;
     _appsContainer       = appsContainer;
     _pusher              = pusher;
     _channelService      = channelService;
     _dbContext           = dbContext;
     _eventService        = eventService;
     _onlineJudger        = onlineJudger;
     _stargatePushService = stargatePushService;
     _appDomains          = optionsAccessor.Value;
 }
Ejemplo n.º 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;
 }