コード例 #1
0
 public SoundCloudClientInfoBootstrapper(IJsonEntityLoader entityLoader, ISettingsService settingsService, ISingletonRepository <SoundCloudClientInfo> clientInfoRepository, ISoundCloudService soundCloudService)
 {
     _entityLoader         = entityLoader;
     _settingsService      = settingsService;
     _clientInfoRepository = clientInfoRepository;
     _soundCloudService    = soundCloudService;
 }
コード例 #2
0
 public PlaylistViewService(ISoundCloudService soundCloudService,
                            IAudioPlayerManager player,
                            ILocalPlaylistService localPlaylistService,
                            ILocalTrackService localTrackService)
 {
     _soundCloudService    = soundCloudService;
     _player               = player;
     _localPlaylistService = localPlaylistService;
     _localTrackService    = localTrackService;
 }
コード例 #3
0
 public SoundCloudSettingsViewService(ISoundCloudService soundCloudService, ISettingsService settingsService)
 {
     _soundCloudService = soundCloudService;
     _settingsService   = settingsService;
 }
コード例 #4
0
 public DownloaderController(ISoundCloudService soundCloudService)
 {
     this._soundCloudService = soundCloudService;
 }
コード例 #5
0
 public SoundCloudArgProcessor(ISoundCloudService soundCloudService, ISettingsService settingsService)
 {
     _soundCloudService = soundCloudService;
     _settingsService   = settingsService;
 }