Example #1
0
        public List <Order> GetOrdersByCustomerID(string customerID)
        {
            var repo     = new OrderDAC();
            var tempList = repo.GetAllOrdersByCustomer(customerID);

            return(tempList);
        }