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