Ejemplo n.º 1
0
 public BaseInfoController(
     IContextInfoService contextInfoService,
     IServerHostService serverHostService)
 {
     _info = contextInfoService;
     _host = serverHostService;
 }
Ejemplo n.º 2
0
 public LogService(IEntitySerialiser entitySerialiser,
                   IContextInfoService contextInfoService)
 {
     _entitySerialiser   = entitySerialiser;
     _contextInfoService = contextInfoService;
     _telemetry          = new TelemetryClient();
 }
 public TokenIncrementsController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenIncrementService tokenIncrementService
     ) : base(infoService, hostService)
 {
     _tokenService          = tokenService;
     _tokenIncrementService = tokenIncrementService;
 }
 public LyciumTokenController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenNotify tokenNotify
     ) : base(infoService, hostService)
 {
     _tokenService = tokenService;
     _tokenNotify  = tokenNotify;
 }
 public AuthenticationPiplineDelegate(
     IClientTokenService tokenService,
     IClientResourceService resource,
     IClientHostService host,
     IContextInfoService contextInfoService
     )
 {
     _tokenService    = tokenService;
     _resourceService = resource;
     _hostService     = host;
     _infoService     = contextInfoService;
 }
 public TokenController(
     LyciumNotifier notifier,
     IHostService host,
     ITokenService token,
     IContextInfoService info,
     IEntitySetter <LyciumToken> setter,
     IEntityGetter <LyciumToken> getter
     ) : base(setter, getter)
 {
     _info     = info;
     _host     = host;
     _notifier = notifier;
     _token    = token;
 }
Ejemplo n.º 7
0
 public FreeSqlServerHostService(IFreeSql freesql, IContextInfoService infoService) : base(infoService)
 {
     _freeSql = freesql;
     InitAction?.Invoke(freesql);
 }
Ejemplo n.º 8
0
 public LoginService(IClientTokenService tokenService, IContextInfoService infoService)
 {
     _tokenService = tokenService;
     _infoService  = infoService;
 }
 public HostDebugController(IServerHostService hostService, IServerConfigurationService serverConfiguration, IContextInfoService infoService)
 {
     _hostService   = hostService;
     _configService = serverConfiguration;
     _infoService   = infoService;
 }