public GameViewModelFactory(
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }
Пример #2
0
 public GameViewModel(
     IGamePathInfo game,
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.game                 = game;
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }