コード例 #1
0
 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;
     }
 }