Example #1
0
        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);
        }