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