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