示例#1
0
文件: CartBL.cs 项目: kavijayk/M5-PLP
        public bool DeleteCartBL(string propName)
        {
            bool CartDeleted = false;

            try
            {
                CartDeleted = cartDAL.DeleteCartDAL(propName);
            }
            catch (EasyHousingSolutionException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(CartDeleted);
        }