public SpotifyHandle(IHttpHandle httpHandle, IJsonHandle jsonHandle, IOptions <SpotifySettings> spotifySettings, IDiscoRepository discoRepository)
 {
     _httpHandle      = httpHandle;
     _jsonHandle      = jsonHandle;
     _spotifySettings = spotifySettings.Value;
     _discoRepository = discoRepository;
 }
 public HttpHandle(IJsonHandle jsonHanlde)
 {
     _jsonHanlde = jsonHanlde;
 }