public async Task <IEnumerable <TypeProduit> > GetTypesProduit() { try { var result = await _stockApi.GetTypesProduit(); return(result.Content); } catch (ApiException e) { throw new StockApiException(e.Message); } catch (Exception e) { _logger.LogError(e.Message); throw; } }