public MatchesController(MatchMusicContext context, SpotifyClientBuilder spotifyClient)
 {
     _context = context;
     _spotifyClientBuilder = spotifyClient;
     _currentUser          = new User();
     _secondUser           = new User();
     _match = new Match();
 }
 public UsersController(MatchMusicContext context, SpotifyClientBuilder spotifyClient)
 {
     _context = context;
     _spotifyClientBuilder = spotifyClient;
     _user = new User();
 }