Пример #1
0
 public DataReader(StorageStructure structure)
 {
     this.Storage = structure;
 }
 public DataConverter(StorageStructure structure)
 {
     this.Storage = structure;
     this.Reader  = new DataReader(this.Storage);
     this.Writer  = new DataWriter(this.Storage);
 }
Пример #3
0
 public DataWriter(StorageStructure structure)
 {
     this.Storage = structure;
 }