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