public ExchangeCenterConfig GetExchangeCenterConfig(int id)
 {
     try
     {
         return(DALExchangeCenterConfig.GetExchangeCenterConfig(id));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new ExchangeCenterConfigException(1, "GetExchangeCenterConfig", ex);
         Logger.Log(Level.Error, exception, "GetExchangeCenterConfig");
         throw ex;
     }
 }