コード例 #1
0
 public async Task DeleteTypeProduit(Guid id)
 {
     try
     {
         await _stockApi.DeleteTypeProduit(id);
     }
     catch (ApiException e)
     {
         throw new StockApiException(e.Message);
     }
     catch (Exception e)
     {
         _logger.LogError(e.Message);
         throw;
     }
 }