Exemplo n.º 1
0
 public RecordService(SpaceCtrlContext dbContext, IOptions <AppSettings> options)
 {
     _dbContext = dbContext;
     _settings  = options.Value;
 }
Exemplo n.º 2
0
 public ObjectService(SpaceCtrlContext dbContext, IOptions <AppSettings> options, DeviceService device)
 {
     _dbContext = dbContext;
     _device    = device;
     _settings  = options.Value;
 }
Exemplo n.º 3
0
 public GroupService(SpaceCtrlContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 4
0
 public DeviceService(SpaceCtrlContext dbContext, DeviceCache cache, IOptions <AppSettings> settings)
 {
     _dbContext = dbContext;
     _cache     = cache;
     _settings  = settings.Value;
 }