Exemple #1
0
        public static void ClassInitialize(TestContext _)
        {
            var config = new TestingConfiguration().Build();

            sut = new SpotifyWebApi(new HttpClient(), new SpotifyClientCredentialsFlow(config, new HttpClient()));
        }
Exemple #2
0
 public AlbumifyService(ILogger <AlbumifyService> logger, I3rdPartyMusicService thirdPartyMusicService, IMyCollectionRepository myCollectionRepository)
 {
     _logger = logger;
     _thirdPartyMusicService = thirdPartyMusicService;
     _myCollectionRepo       = myCollectionRepository;
 }