public FindLyricsForSongJob(
     IDeletableEntityRepository <Song> songsRepository,
     ISongsService songsService,
     ISongMetadataService songMetadataService,
     ILyricsPluginDataProvider lyricsPluginDataProvider)
 {
     this.songsRepository          = songsRepository;
     this.songsService             = songsService;
     this.songMetadataService      = songMetadataService;
     this.lyricsPluginDataProvider = lyricsPluginDataProvider;
 }
Example #2
0
 public SongsController(
     ISongsService songsService,
     ISongMetadataService songMetadataService,
     ISongNameSplitter songNameSplitter,
     IYouTubeDataProvider youTubeDataProvider,
     ILyricsPluginDataProvider lyricsPluginDataProvider)
 {
     this.songsService             = songsService;
     this.songMetadataService      = songMetadataService;
     this.songNameSplitter         = songNameSplitter;
     this.youTubeDataProvider      = youTubeDataProvider;
     this.lyricsPluginDataProvider = lyricsPluginDataProvider;
 }