public DynamicReportingService(
     IDbContextFactory <ValidationPortalDbContext> validationPortalDataContextFactory,
     ISchoolYearDbContextFactory schoolYearDbContextFactory,
     ISchoolYearService schoolYearService,
     ILoggingService loggingService,
     IRulesEngineConfigurationValues rulesEngineConfigurationValues)
 {
     ValidationPortalDataContextFactory = validationPortalDataContextFactory;
     SchoolYearDbContextFactory         = schoolYearDbContextFactory;
     SchoolYearService = schoolYearService;
     LoggingService    = loggingService;
     RulesEngineConfigurationValues = rulesEngineConfigurationValues;
 }
示例#2
0
 public RulesEngineService(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IRulesEngineConfigurationValues engineConfig,
     ILoggingService loggingService,
     IDbContextFactory <ValidationPortalDbContext> dbContextFactory,
     Model engineObjectModel)
 {
     _appUserService    = appUserService;
     _edOrgService      = edOrgService;
     _schoolYearService = schoolYearService;
     _loggingService    = loggingService;
     _engineConfig      = engineConfig;
     DbContextFactory   = dbContextFactory;
     _engineObjectModel = engineObjectModel;
 }
 public RulesEngineService(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IRulesEngineConfigurationValues engineConfig,
     ILoggingService loggingService,
     IDbContextFactory <ValidationPortalDbContext> dbContextFactory,
     ISchoolYearDbContextFactory odsDbContextFactory,
     Model engineObjectModel,
     IManualRuleExecutionService manualRuleExecutionService)
 {
     AppUserService             = appUserService;
     EdOrgService               = edOrgService;
     SchoolYearService          = schoolYearService;
     LoggingService             = loggingService;
     EngineConfig               = engineConfig;
     DbContextFactory           = dbContextFactory;
     OdsDbContextFactory        = odsDbContextFactory;
     EngineObjectModel          = engineObjectModel;
     ManualRuleExecutionService = manualRuleExecutionService;
 }
 public ManualRuleExecutionService(IRulesEngineConfigurationValues rulesEngineConfigurationValues, ILoggingService loggingService)
 {
     _rulesEngineConfigurationValues = rulesEngineConfigurationValues;
     _loggingService = loggingService;
 }
 public EngineSchemaProvider(IRulesEngineConfigurationValues rulesEngineConfigurationValues)
 {
     Value = rulesEngineConfigurationValues.RuleEngineResultsSchema;
 }
 public RuleDefinitionService(IRulesEngineConfigurationValues rulesEngineConfigurationValues)
 {
     RulesEngineConfigurationValues = rulesEngineConfigurationValues;
 }