Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

SearchClientService.cs 556B

123456789101112131415161718192021
  1. using GrpcShared.DTO.Search;
  2. using GrpcShared.Interfaces;
  3. using NemAnBlazor.Services.Interfaces;
  4. namespace NemAnBlazor.Services
  5. {
  6. public class SearchClientService : ISearchClientService
  7. {
  8. private ISearchService _serviceClient;
  9. public SearchClientService(ISearchService serviceClient)
  10. {
  11. _serviceClient = serviceClient;
  12. }
  13. public async Task<SearchResponse> GetListSearchAsync(SearchRequest request)
  14. {
  15. return await _serviceClient.ListSearchAsync(request);
  16. }
  17. }
  18. }