Esempio n. 1
0
 public Engine()
 {
     this.reader        = new Reader();
     this.writer        = new Writer();
     this.storageMaster = new StorageMaster();
 }
Esempio n. 2
0
 public Engine(IStorageMaster master, IReader reader, IWriter writer)
 {
     this.master = master;
     this.reader = reader;
     this.writer = writer;
 }
Esempio n. 3
0
 public Engine(IReader reader, IWriter writer)
 {
     this.reader        = reader;
     this.writer        = writer;
     this.storageMaster = new StorageMaster();
 }