/// <summary>
 /// Construct a new InstallationCatalog with an index mapper that will group the Installations - by user in this case.
 /// </summary>
 /// <param name="indexMap">An index mapper to group installations by user.</param>
 public InstallationCatalog(IInstallationIndexMap indexMap)
 {
     _indexMap = indexMap;
 }
Esempio n. 2
0
 public InstallationCatalogByComputer(IInstallationIndexMap indexMap)
 {
     _indexMap = indexMap;
 }