public AlbumController(CancerIspContext context) { _context = context; }
public SongController(CancerIspContext context, SpotifyWebAPI spotifyWebApi, IGetRecommendations <Song> getRecommendations) { _context = context; _spotifyWebApi = spotifyWebApi; this.getRecommendations = getRecommendations; }
public GetSongRecommendations(CancerIspContext context) { _context = context; }
public ArtistController(CancerIspContext context) { _context = context; }
public HomeController(CancerIspContext context, IGetRecommendations <Song> getRecommendations) { _context = context; _getRecommendations = getRecommendations; }
public LoginController(CancerIspContext context) { _context = context; }
public SearchController(CancerIspContext context) { _context = context; }
public UserController(CancerIspContext context) { this.context = context; }