Inheritance: IRAMStorage
 public void SetUp()
 {
     var ramStorage = new RAMStorage(NumberOfHashTables);
     HashBinDao = new HashBinDao(ramStorage);
     TrackDao = new TrackDao(ramStorage);
     SubFingerprintDao = new SubFingerprintDao(ramStorage);
 }
 public void SetUp()
 {
     var ramStorage = new RAMStorage(NumberOfFingerprints);
     SubFingerprintDao = new SubFingerprintDao(ramStorage);
     TrackDao = new TrackDao(ramStorage);
 }
 public void SetUp()
 {
     var ramStorage = new RAMStorage(NumberOfHashTables);
     ModelService = new InMemoryModelService(
         new TrackDao(ramStorage), new HashBinDao(ramStorage), new SubFingerprintDao(ramStorage), new FingerprintDao(ramStorage), new SpectralImageDao());
 }
 public void SetUp()
 {
     var ramStorage = new RAMStorage(NumberOfHashTables);
     fingerprintDao = new FingerprintDao(ramStorage);
     trackDao = new TrackDao(ramStorage);
 }