Exemplo n.º 1
0
 public ModifyLogService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
Exemplo n.º 2
0
 public SettingService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
Exemplo n.º 3
0
 public ConfigService(ISqlContext context, IMemoryCache memoryCache, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
     _memoryCache   = memoryCache;
 }
Exemplo n.º 4
0
 public AppService(ISqlContext context, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
 }