public Repository(IFingerprintUnitBuilder fingerprintUnitBuilder, IStorage storage, ICombinedHashingAlgoritm combinedHashingAlgorithm)
 {
     this.combinedHashingAlgorithm = combinedHashingAlgorithm;
     this.storage = storage;
     this.fingerprintUnitBuilder = fingerprintUnitBuilder;
 }
 public QueryFingerprintService(ICombinedHashingAlgoritm hashingAlgorithm, IModelService modelService)
 {
     this.hashingAlgorithm = hashingAlgorithm;
     this.modelService = modelService;
 }