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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }