コード例 #1
0
 public Scanner(
     IRepository repository,
     IGameInfoParser gameInfoParser)
 {
     this.repository     = repository;
     this.gameInfoParser = gameInfoParser;
 }
コード例 #2
0
 public GameViewModelFactory(
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }
コード例 #3
0
 public GameViewModel(
     IGamePathInfo game,
     IGameInfoParser gameInfoParser,
     IDesktopShortcutMaker desktopShortcutMaker)
 {
     this.game                 = game;
     this.gameInfoParser       = gameInfoParser;
     this.desktopShortcutMaker = desktopShortcutMaker;
 }