Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DslEngine"/> class.
 /// </summary>
 public DslEngine()
 {
     Storage = new FileSystemDslEngineStorage();
     Cache = new DefaultDslEngineCache();
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DslEngine"/> class.
 /// </summary>
 public DslEngine()
 {
     Storage = new FileSystemDslEngineStorage();
     Cache   = new DefaultDslEngineCache();
 }