public AlbumsController(ISpotifyData spotifyData)
 {
     this.spotifyData = spotifyData;
 }
Example #2
0
 public ArtistsController(ISpotifyData spotifyData)
 {
     this.spotifyData = spotifyData;
 }
Example #3
0
 public SearchController(IMapper mapper, ISpotifyData spotifyData)
 {
     this.mapper      = mapper;
     this.spotifyData = spotifyData;
 }
 public AppRepository(DataContext context, IMapper mapper, ISpotifyData spotifyData)
 {
     this.context     = context;
     this.mapper      = mapper;
     this.spotifyData = spotifyData;
 }