/// <summary>Ctor. </summary>
 public ConfigurationEngineDefaults()
 {
     ThreadingConfig          = new Threading();
     ViewResourcesConfig      = new ViewResources();
     EventMetaConfig          = new EventMeta();
     LoggingConfig            = new Logging();
     VariablesConfig          = new Variables();
     StreamSelectionConfig    = new StreamSelection();
     TimeSourceConfig         = new TimeSource();
     MetricsReportingConfig   = new ConfigurationMetricsReporting();
     LanguageConfig           = new Language();
     ExpressionConfig         = new Expression();
     ExecutionConfig          = new Execution();
     ExceptionHandlingConfig  = new ExceptionHandling();
     ConditionHandlingConfig  = new ConditionHandling();
     AlternativeContextConfig = new AlternativeContext();
     ClusterConfig            = new Cluster();
     PatternsConfig           = new Patterns();
     MatchRecognizeConfig     = new MatchRecognize();
     ScriptsConfig            = new Scripts();
 }
 public AlternativesController(AlternativeContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public UnitOfWork(AlternativeContext context, IRepositoryFactory repositoryFactory)
 {
     _context = context;
     this.repositoryFactory = repositoryFactory;
 }
Beispiel #4
0
 public SqlRepository(AlternativeContext context)
 {
     _context = context;
     _set     = context.Set <T>();
 }