Ejemplo n.º 1
0
        public static void ClassInitialize(TestContext _)
        {
            var config = new TestingConfiguration().Build();

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