Esempio n. 1
0
        private const string APPLICATION_BASE_URL = "http://localhost:62543"; //TODO: for the love of god, get this from the httpcontext

        public HomeController(ILogger <HomeController> logger, ISpotifyApiService spotifyApiService)
        {
            _logger            = logger;
            _spotifyApiService = spotifyApiService;
        }
Esempio n. 2
0
 public RecommendationService(ISpotifyApiService spotifyService)
 {
     _spotifyService = spotifyService;
 }