コード例 #1
0
 public ModifyLogService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
コード例 #2
0
 public SettingService(ISqlContext context)
 {
     _dbContext = context as AgileConfigDbContext;
 }
コード例 #3
0
 public ConfigService(ISqlContext context, IMemoryCache memoryCache, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
     _memoryCache   = memoryCache;
 }
コード例 #4
0
ファイル: AppService.cs プロジェクト: zz110/AgileConfig
 public AppService(ISqlContext context, ISysLogService sysLogService)
 {
     _dbContext     = context as AgileConfigDbContext;
     _sysLogService = sysLogService;
 }