Ejemplo n.º 1
0
 public ColorService(IMQTTService mqttService,
                     IConfigService configService,
                     IXWebRepo <UserColor> colorsRepo)
 {
     _mqttService   = mqttService;
     _configService = configService;
     _colorsRepo    = colorsRepo;
 }
Ejemplo n.º 2
0
 public SendDumpService(IXWebRepo <DumpPostResult> dumpLocalNetworkRepo,
                        IDiscoveryService discoveryService,
                        IXWebRepo <DumpPostResult> localNetworkRepo)
 {
     _dumpLocalNetworkRepo = dumpLocalNetworkRepo;
     _discoveryService     = discoveryService;
     _localNetworkRepo     = localNetworkRepo;
 }
Ejemplo n.º 3
0
 public TokenTestService(IXWebRepo <TokenResult> tokenResult)
 {
     _tokenResult = tokenResult;
     _tokenResult.SetEndPoint("https://jwtparse.azurewebsites.net/api/JWTWithRsaValidator?code=r3gqblabmyfju0c6zbhknwyiimhdrdn1yld7");
 }
Ejemplo n.º 4
0
 public DiscoveryService(IXWebRepo <IPSettings> settingsRepo, IEntitySerialiser ser)
 {
     _settingsRepo = settingsRepo;
     _ser          = ser;
 }