Exemple #1
0
 public ContextSupportTypeSetupService(
     IGenericReflectorService genericReflectorService,
     IContextSupportTypeCacheService contextSupportTypeCacheService,
     IContextSupportTypeFactory contextSupportTypeFactory)
 {
     this.contextSupportTypeFactory      = contextSupportTypeFactory;
     this.genericReflectorService        = genericReflectorService;
     this.contextSupportTypeCacheService = contextSupportTypeCacheService;
 }
 public DbContextFactory(
     IContextSupportTypeCacheService contextSupportTypeCacheService,
     IContextLoggerFactoryService contextLoggerFactoryService,
     IContextSettingsCacheService contextSettingsCacheService,
     IDatabaseConnectionFactory databaseConnectionFactory)
 {
     this.connectionFactory              = databaseConnectionFactory;
     this.contextSettingsCacheService    = contextSettingsCacheService;
     this.contextSupportTypeCacheService = contextSupportTypeCacheService;
     this.contextLoggerFactoryService    = contextLoggerFactoryService;
 }