Пример #1
0
 static Globals()
 {
     DataAccess = new MemoryDataAccess();
     FormActions = new FormActions();
     RuleRunners = new List<IRuleRunner>() {new CSharpRuleRunner(), new JavascriptRuleRunner(), new PythonRuleRunner(), new RubyRuleRunner(), new SchemeRuleRunner()};
     Exporters = new List<IExporter>() {new StringExporter(), new JsonExporter(), new IniExporter(), new CsvExporter(), new PdfExporter(), new ExcelExporter()};       
     Actions = new List<IRuleAction>() {new TextTemplateAction(), new VideoAction()};
 }