예제 #1
0
파일: CartBL.cs 프로젝트: kavijayk/M5-PLP
        public List <Property> GetAllCartsBL()
        {
            List <Property> CartList = null;

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