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