public async Task UpdateUser(Guid id, UpdateUser user)
 {
     try
     {
         await _stockApi.UpdateUser(id, user);
     }
     catch (ApiException e)
     {
         throw new StockApiException(e.Message);
     }
     catch (Exception e)
     {
         _logger.LogError(e.Message);
         throw;
     }
 }