public ModifyLogService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
Beispiel #2
0
 public SettingService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
 public ConfigService(ISqlContext context, IMemoryCache memoryCache, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
     _memoryCache   = memoryCache;
 }
Beispiel #4
0
 public AppService(ISqlContext context, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
 }