Ejemplo n.º 1
0
        public IotController(ILogger<IotController> logger,
            ICloudService cloudService,
            IIotService iotService,
            ICacheService cacheService,
            IUserService userService,
            IIotWsClient wsClient,
            IIotClient client)
		{
			this.logger = logger;
            this.cloudService = cloudService;
            this.iotService = iotService;
            this.cacheService = cacheService;
            this.userService = userService;
            this.client = client;
            this.wsClient = wsClient;
		}
Ejemplo n.º 2
0
 public IotServiceHub(IIotWsClient iotWsClient)
 {
     this.iotWsClient = iotWsClient;
 }