Ejemplo n.º 1
0
 public DeviceConnectionHub(
     DeviceConnectionsMappingService connections,
     IglooSmartHomeContext context)
 {
     _connections = connections;
     _context     = context;
 }
Ejemplo n.º 2
0
 public UserConnectionHub(
     UserConnectionsMappingService userConnections,
     DeviceConnectionsMappingService deviceConnections,
     IglooSmartHomeContext context)
 {
     _userConnections   = userConnections;
     _deviceConnections = deviceConnections;
     _context           = context;
     AddHandlers();
 }
Ejemplo n.º 3
0
 public SubscriptionController(IglooSmartHomeContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ValuesController"/> class.
 /// </summary>
 /// <param name="balanseContext">The balanse context.</param>
 public ValuesController(IglooSmartHomeContext balanseContext)
 {
     _context = balanseContext;
 }
Ejemplo n.º 5
0
 public DevicesService(IglooSmartHomeContext context)
 {
     _context = context;
 }