/// <summary>
        /// 删除优惠券客户信息
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public static SeatManage.EnumType.HandleResult DeleteSlipCustomer(SeatManage.ClassModel.AMS_SlipCustomer model)
        {
            IWCFService.ISeatManageService seatService = new WcfServiceForSeatManage.SeatManageDateService();
            bool error = false;

            try
            {
                return(seatService.DeleteSlipCustomer(model));
            }
            catch (Exception ex)
            {
                error = true;
                SeatManageComm.WriteLog.Write("删除优惠券客户信息失败:" + ex.Message);
                return(EnumType.HandleResult.Failed);
            }
        }