コード例 #1
0
 public OrderEntity DeleteOrder(int id)
 {
     try {
         return(_orderEngine.DeleteOrder(id));
     } catch (Exception e) {
         _exceptionHandlerLogic.LogExceptionAsync(e);
         throw e;
     }
 }