/// <summary> /// Initializes a new instance of the <see cref="DslEngine"/> class. /// </summary> public DslEngine() { Storage = new FileSystemDslEngineStorage(); Cache = new DefaultDslEngineCache(); }
/// <summary> /// Initializes a new instance of the <see cref="DslEngine"/> class. /// </summary> public DslEngine(string engineName) { Storage = new FileSystemDslEngineStorage(); Cache = new DefaultDslEngineCache(); EngineName = engineName; }