Example #1
0
        public List <Property> GetAllCartsBL()
        {
            List <Property> CartList = null;

            try
            {
                CartList = cartDAL.GetAllCartDAL();
            }
            catch (EasyHousingSolutionException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(CartList);
        }