コード例 #1
0
 public MatchesController(MatchMusicContext context, SpotifyClientBuilder spotifyClient)
 {
     _context = context;
     _spotifyClientBuilder = spotifyClient;
     _currentUser          = new User();
     _secondUser           = new User();
     _match = new Match();
 }
コード例 #2
0
 public UsersController(MatchMusicContext context, SpotifyClientBuilder spotifyClient)
 {
     _context = context;
     _spotifyClientBuilder = spotifyClient;
     _user = new User();
 }
コード例 #3
0
 public ProfileModel(SpotifyClientBuilder spotifyClientBuilder)
 {
     _spotifyClientBuilder = spotifyClientBuilder;
 }
コード例 #4
0
 public IndexModel(SpotifyClientBuilder spotifyClientBuilder)
 {
     _spotifyClientBuilder = spotifyClientBuilder;
 }