Exemplo n.º 1
0
 public FileInfoCollector(IFilesystemLayer fsl, IFilenamesCollector fnc, IContentHashingProvider contentHashingProvider)
 {
     _fsl = fsl;
     _fnc = fnc;
     _contentHashingProvider = contentHashingProvider;
 }
Exemplo n.º 2
0
 public FileInfoCollector(IFilesystemLayer fsl)
 {
     _fsl = fsl;
     _fnc = new FilenamesCollector.FilenamesCollector(_fsl);
     _contentHashingProvider = new ContentHashingProvider(_fsl, new Sha1HashImplementation());
 }