예제 #1
0
        /// <summary>
        /// 删除操作
        /// </summary>
        /// <param name="id">删除ID</param>
        /// <returns></returns>
        private bool DeleteData(string id)
        {
            bool b = false;

            if (!String.IsNullOrEmpty(id))
            {
                EyouSoft.BLL.GovStructure.BMeeting BLL = new EyouSoft.BLL.GovStructure.BMeeting();
                b = BLL.DeleteGovMeeting(id.Split(','));
            }
            return(b);
        }