Esempio n. 1
0
 public AppService(AppMonitoringContext dbContext, AppMonitoringSingletonContext dbSingletonContext, ILogService logService)
 {
     _dbContext          = dbContext;
     _dbSingletonContext = dbSingletonContext;
     _logService         = logService;
 }
Esempio n. 2
0
 public IntervalService(AppMonitoringContext dbContext, ILogService logService)
 {
     _dbContext  = dbContext;
     _logService = logService;
 }
Esempio n. 3
0
 private UserSevice(AppMonitoringContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 4
0
 public LogService(AppMonitoringContext dbContext, AppMonitoringSingletonContext dbSingletonContext)
 {
     _dbContext          = dbContext;
     _dbSingletonContext = dbSingletonContext;
 }