Exemple #1
0
 public AlbumController(CancerIspContext context)
 {
     _context = context;
 }
Exemple #2
0
 public SongController(CancerIspContext context, SpotifyWebAPI spotifyWebApi, IGetRecommendations <Song> getRecommendations)
 {
     _context                = context;
     _spotifyWebApi          = spotifyWebApi;
     this.getRecommendations = getRecommendations;
 }
Exemple #3
0
 public GetSongRecommendations(CancerIspContext context)
 {
     _context = context;
 }
Exemple #4
0
 public ArtistController(CancerIspContext context)
 {
     _context = context;
 }
Exemple #5
0
 public HomeController(CancerIspContext context, IGetRecommendations <Song> getRecommendations)
 {
     _context            = context;
     _getRecommendations = getRecommendations;
 }
Exemple #6
0
 public LoginController(CancerIspContext context)
 {
     _context = context;
 }
 public SearchController(CancerIspContext context)
 {
     _context = context;
 }
Exemple #8
0
 public UserController(CancerIspContext context)
 {
     this.context = context;
 }