예제 #1
0
 public async Task StoreRetrait(CreateRetrait retrait)
 {
     try
     {
         await _stockApi.CreateRetrait(retrait);
     }
     catch (ApiException e)
     {
         throw new StockApiException(e.Message);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         throw;
     }
 }