public async Task StoreAchat(CreateAchat achat) { try { await _stockApi.CreateAchat(achat); } catch (ApiException e) { throw new StockApiException(e.Message); } catch (Exception e) { Console.WriteLine(e); throw; } }