示例#1
0
 public TableMappingFactory(
     IGenericReflectorService genericReflectorService,
     IDbContextFactory contextFactory)
 {
     this.genericReflectorService = genericReflectorService;
     this.contextFactory          = contextFactory;
 }
示例#2
0
 public ContextWarmUpService(
     IGenericReflectorService genericReflectorService,
     IDbContextFactory dbContextFactory)
 {
     this.genericReflectorService = genericReflectorService;
     this.dbContextFactory        = dbContextFactory;
 }
示例#3
0
 public ContextSettingsSetupService(
     IGenericReflectorService genericReflectorService,
     IContextSettingsCacheService contextSettingCacheService,
     IContextSettingsFactory contextSettingFactory)
 {
     this.contextSettingFactory      = contextSettingFactory;
     this.genericReflectorService    = genericReflectorService;
     this.contextSettingCacheService = contextSettingCacheService;
 }
示例#4
0
 public ContextSupportTypeSetupService(
     IGenericReflectorService genericReflectorService,
     IContextSupportTypeCacheService contextSupportTypeCacheService,
     IContextSupportTypeFactory contextSupportTypeFactory)
 {
     this.contextSupportTypeFactory      = contextSupportTypeFactory;
     this.genericReflectorService        = genericReflectorService;
     this.contextSupportTypeCacheService = contextSupportTypeCacheService;
 }
示例#5
0
 public TableMappingSetupService(
     IGenericReflectorService genericReflectorService,
     ITableMappingCacheService tableMappingCacheService,
     ITableMappingFactory tableMappingFactory)
 {
     this.tableMappingFactory      = tableMappingFactory;
     this.genericReflectorService  = genericReflectorService;
     this.tableMappingCacheService = tableMappingCacheService;
     this.tableMappingCacheService = tableMappingCacheService;
 }
示例#6
0
 public ContextSupportTypeFactory(IGenericReflectorService genericReflectorService)
 {
     this.genericReflectorService = genericReflectorService;
 }