Esempio n. 1
0
 public Scanner(
     IRepository repository,
     IGameInfoParser gameInfoParser)
 {
     this.repository     = repository;
     this.gameInfoParser = gameInfoParser;
 }
 public GameViewModelFactory(
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }
Esempio n. 3
0
 public GameViewModel(
     IGamePathInfo game,
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.game                 = game;
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }