コード例 #1
0
 public AlbumController(CancerIspContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: SongController.cs プロジェクト: EmilisM/cancer-isp
 public SongController(CancerIspContext context, SpotifyWebAPI spotifyWebApi, IGetRecommendations <Song> getRecommendations)
 {
     _context                = context;
     _spotifyWebApi          = spotifyWebApi;
     this.getRecommendations = getRecommendations;
 }
コード例 #3
0
 public GetSongRecommendations(CancerIspContext context)
 {
     _context = context;
 }
コード例 #4
0
 public ArtistController(CancerIspContext context)
 {
     _context = context;
 }
コード例 #5
0
 public HomeController(CancerIspContext context, IGetRecommendations <Song> getRecommendations)
 {
     _context            = context;
     _getRecommendations = getRecommendations;
 }
コード例 #6
0
 public LoginController(CancerIspContext context)
 {
     _context = context;
 }
コード例 #7
0
 public SearchController(CancerIspContext context)
 {
     _context = context;
 }
コード例 #8
0
ファイル: UserController.cs プロジェクト: EmilisM/cancer-isp
 public UserController(CancerIspContext context)
 {
     this.context = context;
 }