public InstallerSessionFactory(ISteamHelperRunner steamHelperRunner, Func<IInstallerSession> fact) {
     _steamHelperRunner = steamHelperRunner;
     _fact = fact;
 }
Example #2
0
 public InstallerSessionFactory(ISteamHelperRunner steamHelperRunner, Func <IInstallerSession> fact)
 {
     _steamHelperRunner = steamHelperRunner;
     _fact = fact;
 }
Example #3
0
 public UninstallerSession(IUninstallContentAction2 <IUninstallableContent> action,
                           ISteamHelperRunner steamHelperRunner)
 {
     _action            = action;
     _steamHelperRunner = steamHelperRunner;
 }