コード例 #1
0
 public Mp3MatchEngine(IAppSettingsHelper settingsHelper, IAudioticaService audioticaService,
     INotificationManager notificationManager, IDispatcherHelper dispatcherHelper)
 {
     _audioticaService = audioticaService;
     _notificationManager = notificationManager;
     _dispatcherHelper = dispatcherHelper;
     _service = new Mp3SearchService(settingsHelper);
 }
コード例 #2
0
 public ManualMatchViewModel(IAppSettingsHelper appSettingsHelper, IDispatcherHelper dispatcherHelper)
 {
     this.dispatcherHelper = dispatcherHelper;
     searchService = new Mp3SearchService(appSettingsHelper);
     MessengerInstance.Register<Song>(this, "manual-match", ReceiveSong);
 }